PHPackages                             yurich84/jobready-api - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. yurich84/jobready-api

ActiveLibrary[HTTP &amp; Networking](/categories/http)

yurich84/jobready-api
=====================

Jobready Plus API wrapper for Laravel

1.0(6y ago)2172[2 PRs](https://github.com/Yurich84/jobready-api/pulls)MITPHPPHP &gt;=5.4.0

Since Nov 19Pushed 3y ago2 watchersCompare

[ Source](https://github.com/Yurich84/jobready-api)[ Packagist](https://packagist.org/packages/yurich84/jobready-api)[ RSS](/packages/yurich84-jobready-api/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (1)Versions (4)Used By (0)

Laravel jobready-api
====================

[](#laravel-jobready-api)

[![Laravel 6](https://camo.githubusercontent.com/030af145b96df0cca8e8ceffcadd859c1416578f97e1aaa82abd4c5b648d74e3/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d362d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](http://laravel.com)[![License](https://camo.githubusercontent.com/30597ff9a350144f03bffdd9183e16468e0b3ca1193e1d08591d992622738d55/687474703a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](https://tldrlegal.com/license/mit-license)

Use a [Official Jobready Plus](https://developer.jobready.io) API Documentation

Install
-------

[](#install)

```
composer require Yurich84/jobready-api

```

Usage
-----

[](#usage)

Add the following lines to `.env`

```
JOBREADY_USER=your_user_name
JOBREADY_KEY=your_secret_key
JOBREADY_URL=your_domain.jobreadyplus.com/webservice/

```

Available methods
-----------------

[](#available-methods)

`where` - adds entity's parameters to request

`find` - gets single entity

`findBulk` - retrieve entities by array of uris

`get` - gets list of entities

`uri` - gets generated uri

`url` - gets generated url

`create`

`update`

`getResponse` - manually sending get request

`postResponse` - manually sending post request

Examples
--------

[](#examples)

**Find**

```
use Yurich84\JobReadyApi\Entities\Courses;
...
    $course_number = '99AUS999';
    $courses = (new Courses)->find($course_number);
```

**Get list of Events with limit 20**

```
use Yurich84\JobReadyApi\Entities\Events;
use Yurich84\JobReadyApi\JobReady;
use \Carbon\Carbon;
...
$events = (new Events)
    ->where(Events::PARAMETER_DATE_FROM, Carbon::now()->format(JobReady::DATE_FORMAT))
    ->where(Events::PARAMETER_DATE_TO, Carbon::now()->addWeek()->format(JobReady::DATE_FORMAT))
    ->get(20);
```

**Create**

```
use Yurich84\JobReadyApi\Entities\Trainers;
...
$data = (new Trainers)->create([
    Trainers::FIELD_PARTY_ID => 'PAUS000000'
]);
```

**Update**

```
use Yurich84\JobReadyApi\Entities\Trainers;
...
$payload = [
    Trainers::FIELD_ENABLED => true,
    Trainers::FIELD_EMPLOYMENT_BASIS => 'full-time',
    Trainers::FIELD_IND_ASSESSOR => true,
    Trainers::FIELD_IND_COORDINATOR => true,
    Trainers::FIELD_IND_TRAINER => true,
];
$data = (new Trainers)->update('9804', $payload);
```

**Manually creating**

```
use Yurich84\JobReadyApi\Entities\Events;
use Yurich84\JobReadyApi\JobReady;
use \Carbon\Carbon;
...

$course_number = '99AUS999';

$date = Carbon::now()->addWeeks(2)->format(JobReady::DATE_FORMAT);

$payload = [
    'event' => [
        Events::FIELD_TITLE => 'Test Event',
        Events::FIELD_EVENT_DATE => $date,
        Events::FIELD_START_TIME => '09:00:00',
        Events::FIELD_END_TIME => '15:00:00',
        Events::FIELD_ALL_STAFF => true,
        Events::FIELD_ALL_STUDENTS => true,
    ]
];

$data = (new Events)->postResponse("courses/{$course_number}/events", $payload);
```

**License**[MIT](https://raw.github.com/bigperson/laravel-vk-geo/master/LICENSE)

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 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

Unknown

Total

1

Last Release

2366d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b030ed8f373b14d30b3327d8f712a5374b7639704dbd0a71cf2359457c2ecc99?d=identicon)[Yurich84](/maintainers/Yurich84)

---

Top Contributors

[![Yurich84](https://avatars.githubusercontent.com/u/13067028?v=4)](https://github.com/Yurich84 "Yurich84 (1 commits)")

---

Tags

apilaravelGuzzlewrapperjobready

### Embed Badge

![Health badge](/badges/yurich84-jobready-api/health.svg)

```
[![Health](https://phpackages.com/badges/yurich84-jobready-api/health.svg)](https://phpackages.com/packages/yurich84-jobready-api)
```

###  Alternatives

[hamburgscleanest/guzzle-advanced-throttle

A Guzzle middleware that can throttle requests according to (multiple) defined rules. It is also possible to define a caching strategy, e.g. get response from cache when rate limit is exceeded or always get cached value to spare your rate limits.

13033.4k1](/packages/hamburgscleanest-guzzle-advanced-throttle)[dreamfactory/df-core

DreamFactory(tm) Core Components

1651.7k20](/packages/dreamfactory-df-core)

PHPackages © 2026

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