Download the PHP package valentinbv/jooble-php-api without Composer
On this page you can find all versions of the php package valentinbv/jooble-php-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download valentinbv/jooble-php-api
More information about valentinbv/jooble-php-api
Files in valentinbv/jooble-php-api
Download valentinbv/jooble-php-api
More information about valentinbv/jooble-php-api
Files in valentinbv/jooble-php-api
Please rate this library. Is it a good library?
Informations about the package jooble-php-api
jooble-php-api
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"
}
}
All versions of jooble-php-api with dependencies
PHP Build Version
Package Version
The package valentinbv/jooble-php-api contains the following files
Loading the files please wait ....