mjacobus / lever-api-client
Api client for lever
Installs: 19 194
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 2
Forks: 4
Open Issues: 0
Requires
- php: >=5.5
- guzzlehttp/guzzle: ~6.1
Requires (Dev)
- fabpot/php-cs-fixer: 1.7.*
- phpunit/phpunit: ~4.8.16
- satooshi/php-coveralls: dev-master
- symfony/console: ~2.7
This package is not auto-updated.
Last update: 2024-11-09 19:28:12 UTC
README
This is a WIP Lever client. Documentation here.
Code information:
Package information:
Installing
Installing via Composer
Append the lib to your requirements key in your composer.json.
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.
Contributing
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
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.