PHPackages                             jobbrander/jobs-jobs2careers - 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-jobs2careers

Abandoned → [jobapis/jobs-jobs2careers](/?search=jobapis%2Fjobs-jobs2careers)Library[API Development](/categories/api)

jobbrander/jobs-jobs2careers
============================

Making it simple to integrate your application with the Jobs2Careers API.

2.0.0(9y ago)42213Apache-2.0PHPPHP &gt;=5.5.0

Since Jul 4Pushed 9y ago2 watchersCompare

[ Source](https://github.com/jobapis/jobs-jobs2careers)[ Packagist](https://packagist.org/packages/jobbrander/jobs-jobs2careers)[ Docs](https://github.com/jobapis/jobs-jobs2careers)[ RSS](/packages/jobbrander-jobs-jobs2careers/feed)WikiDiscussions master Synced 1mo ago

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

[![JobApis.com](https://camo.githubusercontent.com/99f7a7ebb7ad8bf37b4df3ddc41ba43c190f949ae5ef1f5d1befef590212b36e/68747470733a2f2f692e696d6775722e636f6d2f39564f416b725a2e706e67)](https://www.jobapis.com) Jobs2Careers Job Board API Client
===============================================================================================================================================================================================================================================

[](#-jobs2careers-job-board-api-client)

[![Twitter URL](https://camo.githubusercontent.com/2561c1ca1992b206c8d5ef27979e3c60aa28e6c4f5def60b53d327fbe6b506e5/68747470733a2f2f696d672e736869656c64732e696f2f747769747465722f75726c2f68747470732f747769747465722e636f6d2f6a6f62617069732e7376673f7374796c653d736f6369616c266c6162656c3d466f6c6c6f772532302534306a6f6261706973)](https://twitter.com/jobapis)[![Latest Version](https://camo.githubusercontent.com/5e176ed5f4bbf80aa8d14ff2d8189bfbf5c9a2ba6d0d82035ee394b9f0b67804/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f6a6f62617069732f6a6f62732d6a6f627332636172656572732e7376673f7374796c653d666c61742d737175617265)](https://github.com/jobapis/jobs-jobs2careers/releases)[![Software License](https://camo.githubusercontent.com/83a69279c9f2ed137be556c08d1ceaf2161ae96eeb88f8caade8ef619f2d6c27/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d415041434845253230322e302d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/a39bd82c5cde39b0a058c15749f4b3ceea8918ca1aac894747058e91065109c8/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6a6f62617069732f6a6f62732d6a6f627332636172656572732f6d61737465722e7376673f7374796c653d666c61742d7371756172652631)](https://travis-ci.org/jobapis/jobs-jobs2careers)[![Coverage Status](https://camo.githubusercontent.com/84fa6110e7e5d4e38b56eb25db7ca56be35fcee0e987072daae20e27b8dca09a/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6a6f62617069732f6a6f62732d6a6f627332636172656572732e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/jobapis/jobs-jobs2careers/code-structure)[![Quality Score](https://camo.githubusercontent.com/4f8d10f272bc101b78f9c75fde3af9c8158a43a326671f6f1003e02d99f42e76/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6a6f62617069732f6a6f62732d6a6f627332636172656572732e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/jobapis/jobs-jobs2careers)[![Total Downloads](https://camo.githubusercontent.com/6b59adf19d5921e5512efd305b9d28b244a3bb9eae3e42078528d9f8c8173975/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a6f62617069732f6a6f62732d6a6f627332636172656572732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jobapis/jobs-jobs2careers)

About
-----

[](#about)

This package makes it easy to connect your PHP project to the [Jobs2Careers API](http://api.jobs2careers.com/api/spec.pdf). It uses the [Jobs Common project](https://github.com/jobapis/jobs-common) to standardize responses using Schema.org's [JobPosting specification](https://schema.org/JobPosting).

### Example

[](#example)

Getting jobs from the API just takes a couple lines of code:

```
$query = new J2cQuery([
    'id' => YOUR_PUBLISHER_ID,
    'pass' => YOUR_PUBLISHER_PASSWORD,
    'q' => YOUR_KEYWORD_SEARCH,
    'l' => YOUR_LOCATION,
]);
$client = new J2cProvider($query);
$jobs = $client->getJobs();
```

See [Usage](#usage) section below for more detailed examples.

### Mission

[](#mission)

[JobApis](https://www.jobapis.com) makes job board and company data more accessible through open source software. To learn more, visit [JobApis.com](https://www.jobapis.com), or contact us at .

Requirements
------------

[](#requirements)

- [PHP 5.5+](http://www.php.net/)
- [Composer](https://getcomposer.org/)

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

[](#installation)

To install, use composer:

```
composer require jobapis/jobs-jobs2careers

```

Usage
-----

[](#usage)

Create a Query object and add all the parameters you'd like via the constructor.

```
// Add parameters to the query via the constructor
$query = new JobApis\Jobs\Client\Queries\J2cQuery([
    'id' => YOUR_PUBLISHER_ID,
    'pass' => YOUR_PUBLISHER_PASSWORD,
]);
```

Or via the "set" method. All of the parameters documented in the documentation can be added.

```
// Add parameters via the set() method
$query->set('q', 'engineering');
```

You can chain them if you'd like.

```
// Add parameters via the set() method
$query->set('l', 'Chicago, IL')
    ->set('start', 10)
    ->set('limit', 20);
```

Then inject the query object into the provider.

```
// Instantiating the Provider with a query object
$client = new JobApis\Jobs\Client\Providers\J2cProvider($query);
```

And call the "getJobs" method to retrieve results.

```
// Get a Collection of Jobs
$jobs = $client->getJobs();
```

The `getJobs()` method will return a [Collection](https://github.com/jobapis/jobs-common/blob/master/src/Collection.php) of [Job](https://github.com/jobapis/jobs-common/blob/master/src/Job.php) objects based on Schema.org's [JobPosting](https://schema.org/JobPosting) specification.

Testing
-------

[](#testing)

1. Clone this repository from Github.
2. Install the dependencies with Composer: `$ composer install`.
3. Run the test suite: `$ ./vendor/bin/phpunit`.
4. (Optional) To run all tests including actual API calls: `$ ID= PASS= ./vendor/bin/phpunit`

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

[](#contributing)

Contributions are welcomed and encouraged! Please see [JobApis' contribution guidelines](https://www.jobapis.com/contributing/) for details, or create an issue in Github if you have any questions.

Legal
-----

[](#legal)

### Disclaimer

[](#disclaimer)

This package is not affiliated with or supported by :provider\_name and we are not responsible for any use or misuse of this software.

### License

[](#license)

This package uses the Apache 2.0 license. Please see the [License File](https://www.jobapis.com/license/) for more information.

### Copyright

[](#copyright)

Copyright 2017, Karl Hughes .

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 95.1% 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 ~118 days

Recently: every ~142 days

Total

6

Last Release

3380d ago

Major Versions

0.1.2 → 1.0.02015-10-10

1.1.0 → 2.0.02017-02-14

### 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 (39 commits)")[![stevenmaguire](https://avatars.githubusercontent.com/u/1851973?v=4)](https://github.com/stevenmaguire "stevenmaguire (2 commits)")

---

Tags

api-clientjob-boardjobs2careers-apiobjectapi clientjobsjobs2careers

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

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

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

###  Alternatives

[jobapis/jobs-common

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

4459.3k32](/packages/jobapis-jobs-common)[jobapis/jobs-ziprecruiter

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

134.9k1](/packages/jobapis-jobs-ziprecruiter)

PHPackages © 2026

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