This is a WIP Lever client. Documentation here.
Code information:
Package information:
Append the lib to your requirements key in your composer.json.
composer require mjacobus/lever-api-client
use Lever\Api\Client;
$client = new Client([
'authToken' => '{myApiToken}',
]);
$postings = $client->get('/postings', [
'limit' => 100,
]);
Here is the issue tracker.
Only tested code will be accepted. Please follow fix the style guide.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
./vendor/bin/phpunit
# Fixes code
./bin/php-cs-fix.sh
# outputs error
./bin/php-cs-fix.sh src true
./bin/php-cs-fix.sh test true
This software is distributed under the MIT license.