PHPackages                             jobbrander/jobs-simplyhired - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. jobbrander/jobs-simplyhired

AbandonedLibrary[API Development](/categories/api)

jobbrander/jobs-simplyhired
===========================

Making it simple to integrate your application with SimplyHired Jobs API.

0.4.0(10y ago)02112[3 issues](https://github.com/JobBrander/jobs-simplyhired/issues)Apache-2.0PHPPHP &gt;=5.5.0

Since Apr 22Pushed 10y ago2 watchersCompare

[ Source](https://github.com/JobBrander/jobs-simplyhired)[ Packagist](https://packagist.org/packages/jobbrander/jobs-simplyhired)[ Docs](https://github.com/JobBrander/jobs-simplyhired)[ RSS](/packages/jobbrander-jobs-simplyhired/feed)WikiDiscussions master Synced yesterday

READMEChangelog (8)Dependencies (5)Versions (9)Used By (0)

Simplyhired Jobs Client
=======================

[](#simplyhired-jobs-client)

[![Latest Version](https://camo.githubusercontent.com/2a41451f8acc01a0fa84d7bf9dfc0e80d010557f0ccd3f45dcda1a739868db06/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f4a6f624272616e6465722f6a6f62732d73696d706c7968697265642e7376673f7374796c653d666c61742d737175617265)](https://github.com/JobBrander/jobs-simplyhired/releases)[![Software License](https://camo.githubusercontent.com/83a69279c9f2ed137be556c08d1ceaf2161ae96eeb88f8caade8ef619f2d6c27/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d415041434845253230322e302d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/1b4dace4b9fb3a486da7c2446d71eef10d63136627b99e765a4668b912f726f3/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f4a6f624272616e6465722f6a6f62732d73696d706c7968697265642f6d61737465722e7376673f7374796c653d666c61742d7371756172652631)](https://travis-ci.org/JobBrander/jobs-simplyhired)[![Coverage Status](https://camo.githubusercontent.com/dd96f2e3d2cb334aec6dc6bcdeb6cf22d08385ff30b2a85277808b32981c58c9/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f4a6f624272616e6465722f6a6f62732d73696d706c7968697265642e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/JobBrander/jobs-simplyhired/code-structure)[![Quality Score](https://camo.githubusercontent.com/19de0074f9ef6fa4c87022709ce866a999754b5a74c56511c77a7300eaafe8a3/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f4a6f624272616e6465722f6a6f62732d73696d706c7968697265642e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/JobBrander/jobs-simplyhired)[![Total Downloads](https://camo.githubusercontent.com/93350537f8ce37b204588e960192da7588b9ce5f07b3f67ab7ad42b330b8198c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a6f626272616e6465722f6a6f62732d73696d706c7968697265642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jobbrander/jobs-simplyhired)

This package provides [Simplyhired Jobs API](http://www.simplyhired.com/a/publishers/overview)support for the JobBrander's [Jobs Client](https://github.com/JobBrander/jobs-common).

Installation
------------

[](#installation)

To install, use composer:

```
composer require jobbrander/jobs-simplyhired

```

Usage
-----

[](#usage)

Usage is the same as Job Branders's Jobs Client, using `\JobBrander\Jobs\Client\Provider\Simplyhired` as the provider.

```
$client = new JobBrander\Jobs\Client\Provider\Simplyhired([
    'auth' => 'YOUR SIMPLYHIRED AUTHORIZATION KEY'
    'pshid' => 'YOUR SIMPLYHIRED PUBLISHER ID',
    'clip' => 'YOUR IP ADDRESS',
]);

// Search for 200 job listings for 'project manager' in Chicago, IL
$jobs = $client
    // SimplyHired API path Setters
    ->setQ()        // Query
    ->setL()        // Location
    ->setMi()       // Miles (optional)
    ->setSb()       // Sort by (optional)
    ->setWs()       // Window Size (optional)
    ->setPn()       // Page Number (optional)
    ->setSi()       // Start index (optional)
    ->setFdb()      // Date Posted (optional)
    ->setFjt()      // Job type (optional)
    ->setFsr()      // Job source (optional)
    ->setFem()      // Employer (optional)
    ->setFrl()      // Special filters (optional)
    ->setFed()      // Education requirements (optional)
    // SimplyHired API query setters
    ->setPshid()    // Publisher id (required)
    ->setAuth()     // Authentication Key (required)
    ->setSsty()     // Search style (required)
    ->setCflg()     // Configuration flag (required)
    ->setClip()     // Client IP (required)
    ->setFrag()     // Description fragment, defaults to display clip, not whole description (optional)
    // More
    ->setKeyword('project manager') //
    ->setLocation('Chicago, IL')    //
    ->setCount(200)                 //
    ->getJobs();
```

The `getJobs` method will return a [Collection](https://github.com/JobBrander/jobs-common/blob/master/src/Collection.php) of [Job](https://github.com/JobBrander/jobs-common/blob/master/src/Job.php) objects.

Testing
-------

[](#testing)

```
$ ./vendor/bin/phpunit
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](https://github.com/jobbrander/jobs-simplyhired/blob/master/CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Karl Hughes](https://github.com/karllhughes)
- [Steven Maguire](https://github.com/stevenmaguire)
- [All Contributors](https://github.com/jobbrander/jobs-simplyhired/contributors)

License
-------

[](#license)

The Apache 2.0. Please see [License File](https://github.com/jobbrander/jobs-simplyhired/blob/master/LICENSE) for more information.

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 95% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~25 days

Recently: every ~32 days

Total

8

Last Release

3915d ago

PHP version history (2 changes)0.1.0PHP &gt;=5.4.0

0.3.1PHP &gt;=5.5.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/8f48fe8aced156a4651617032e4d126d7e3f696e46539688b3bda792d28ee0b4?d=identicon)[karllhughes](/maintainers/karllhughes)

---

Top Contributors

[![karllhughes](https://avatars.githubusercontent.com/u/1103622?v=4)](https://github.com/karllhughes "karllhughes (19 commits)")[![stevenmaguire](https://avatars.githubusercontent.com/u/1851973?v=4)](https://github.com/stevenmaguire "stevenmaguire (1 commits)")

---

Tags

objectapi clientjobssimplyhired

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/jobbrander-jobs-simplyhired/health.svg)

```
[![Health](https://phpackages.com/badges/jobbrander-jobs-simplyhired/health.svg)](https://phpackages.com/packages/jobbrander-jobs-simplyhired)
```

###  Alternatives

[jobapis/jobs-common

Making it simple to integrate your application with job api providers.

4459.6k32](/packages/jobapis-jobs-common)[jobapis/jobs-indeed

Making it simple to integrate your application with Indeed Jobs API.

2735.3k1](/packages/jobapis-jobs-indeed)[jobapis/jobs-stackoverflow

Making it simple to integrate your application with Stack Overflows's Career RSS Feed.

162.7k1](/packages/jobapis-jobs-stackoverflow)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
