PHPackages                             jobapis/jobs-dice - 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. jobapis/jobs-dice

ActiveLibrary

jobapis/jobs-dice
=================

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

1.0.1(9y ago)22.9k↓100%3[1 issues](https://github.com/jobapis/jobs-dice/issues)1Apache-2.0PHPPHP &gt;=5.5.0

Since Apr 18Pushed 8y ago2 watchersCompare

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

READMEChangelog (10)Dependencies (5)Versions (11)Used By (1)

Dice Jobs Client
================

[](#dice-jobs-client)

[![Latest Version](https://camo.githubusercontent.com/932e94fd3ccf39d40841d4f1458396954fe117afd542764ccbbba830123ddf45/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f6a6f62617069732f6a6f62732d646963652e7376673f7374796c653d666c61742d737175617265)](https://github.com/jobapis/jobs-dice/releases)[![Software License](https://camo.githubusercontent.com/83a69279c9f2ed137be556c08d1ceaf2161ae96eeb88f8caade8ef619f2d6c27/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d415041434845253230322e302d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/b5d028b43e79472843196a53b7ee9e8b7854e3ad787becd976810bab4c194801/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6a6f62617069732f6a6f62732d646963652f6d61737465722e7376673f7374796c653d666c61742d7371756172652631)](https://travis-ci.org/jobapis/jobs-dice)[![Coverage Status](https://camo.githubusercontent.com/77b68b137b6fbf699a17cc660e80cd5d32b4cd902cb46b700631480d4e5480f5/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f4a6f624272616e6465722f6a6f62732d646963652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/jobapis/jobs-dice/code-structure)[![Quality Score](https://camo.githubusercontent.com/92a0650cacf0b30eeb1ce873ecdb67093ccf3e6235f3207a22655041d013bf1f/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6a6f62617069732f6a6f62732d646963652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/jobapis/jobs-dice)[![Total Downloads](https://camo.githubusercontent.com/dc3323f97daf5e531a590133eff482ef3cc04a7a00e4f295582fe4375abdb706/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a6f62617069732f6a6f62732d646963652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jobapis/jobs-dice)

DEPRECATION NOTICE: As of [October, 2017 the Dice Jobs API has been shut down](https://github.com/jobapis/jobs-dice/issues/8). Dice has given me no reason for this, but there's nothing I can do about it. This library no longer works, and everything outlined below is just here for history's sake.

To contact Dice, [please fill out this form on their website](http://techhub.dice.com/Dice_General-ContactUs_D.html).

This package provides [Dice Jobs API](http://www.dice.com/common/content/util/apidoc/jobsearch.html)support for the JobBrander's [Jobs Client](https://github.com/jobapis/jobs-common).

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

[](#installation)

To install, use composer:

```
composer require jobapis/jobs-dice

```

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\DiceQuery([
    'text' => 'engineering'
]);
```

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

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

You can even chain them if you'd like.

```
// Add parameters via the set() method
$query->set('state', 'Illinois')
    ->set('city', 'Chicago')
    ->set('country', 'United States');
```

Then inject the query object into the provider.

```
// Instantiating provider with a query object
$client = new JobApis\Jobs\Client\Provider\DiceProvider($query);
```

And call the "getJobs" method to retrieve results.

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

This 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.

Testing
-------

[](#testing)

To run all tests except for actual API calls

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

To run all tests including actual API calls

```
$ REAL_CALL=1 ./vendor/bin/phpunit
```

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

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

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

License
-------

[](#license)

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

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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 ~56 days

Recently: every ~98 days

Total

10

Last Release

3534d ago

Major Versions

0.3.0 → 1.0.0-alpha2016-09-02

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

0.2.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 (38 commits)")

---

Tags

objectapi clientjobsdice

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/jobapis-jobs-dice/health.svg)

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

###  Alternatives

[jobapis/jobs-indeed

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

2635.2k1](/packages/jobapis-jobs-indeed)[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)[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)
