valentinbv / jooble-php-api
There is no license information available for the latest version (v0.0.1) of this package.
Jooble php api library
v0.0.1
2020-06-19 05:06 UTC
Requires
- php: >=7.1
- guzzlehttp/guzzle: ~6.0
This package is not auto-updated.
Last update: 2025-05-04 02:43:55 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"
}
}