bcismariu / jobs2careers-php
A simple PHP integration of the Jobs2Careers official API
Installs: 218
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/bcismariu/jobs2careers-php
Requires
- guzzlehttp/guzzle: ~6.0
Requires (Dev)
- mockery/mockery: >=0.9.4
This package is auto-updated.
Last update: 2025-10-13 08:56:57 UTC
README
Installation
Update your composer.json
file
{ "require": { "bcismariu/jobs2careers-php": "0.*" } }
Run composer update
Usage
use Bcismariu\Jobs2Careers\Jobs2Careers; $provider = new Jobs2Careers([ 'id' => 'your-id', 'pass' => 'your-pass', 'ip' => 'your-ip' ]); $results = $provider->setQuery('Warehouse Worker') ->setLocation('31131') ->get();
Contributions
This is a very basic implementation that can only handle basic calls. Any project contributions are welcomed!