valentinbv / jooble-php-api
Jooble php api library
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/valentinbv/jooble-php-api
Requires
- php: >=7.1
- guzzlehttp/guzzle: ~6.0
This package is not auto-updated.
Last update: 2025-11-02 04:54:49 UTC
README
This small library is designed to work with jooble site api.
See https://ru.jooble.org/api/about
For example:
$httpClient = new GuzzleHttp\Client();
$joobleRequest = new valentinbv\Jooble\Request($httpClient);
$joobleRequest->setAccessToken('your access token');
try {
$result = $joobleRequest->search(
['keywords' => 'developer']
);
} catch(\Exception $e) {
//some action
}
}
The $result array contains the result of the query to the jooble api server according to the documentation https://ru.jooble.org/api/about
For install from packagist
composer require valentinbv/jooble-php-api
For install from git add to composer.json:
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ValentinBV/jooble-php-api.git"
}
],
"require": {
"valentinbv/jooble-php-api": "dev-master"
}
}