Lever Client
This is a WIP Lever client. Documentation here., (*1)
Code information:, (*2)
, (*3)
Package information:, (*4)
, (*5)
Installing
Installing via Composer
Append the lib to your requirements key in your composer.json., (*6)
composer require mjacobus/lever-api-client
Usage
use Lever\Api\Client;
$client = new Client([
'authToken' => '{myApiToken}',
]);
$postings = $client->get('/postings', [
'limit' => 100,
]);
Issues/Features proposals
Here is the issue tracker., (*7)
Contributing
Only tested code will be accepted. Please follow fix the style guide., (*8)
- 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
How to run the tests:
./vendor/bin/phpunit
To check the code standard run:
# Fixes code
./bin/php-cs-fix.sh
# outputs error
./bin/php-cs-fix.sh src true
./bin/php-cs-fix.sh test true
Lincense
This software is distributed under the MIT license., (*9)
Authors