jaybizzle / deploybot-api
A simple PHP wrapper for the DeployBot API
Installs: 21 150
Dependents: 0
Suggesters: 0
Security: 0
Stars: 19
Watchers: 2
Forks: 5
Open Issues: 0
Requires
- php: >=5.6.0
- guzzlehttp/guzzle: ^6.0
Requires (Dev)
- phpunit/phpunit: ^5.5|^6.5
README
Installation
Add "jaybizzle/deploybot-api": "2.*"
to your composer.json.
Older Versions
If you need to use this with older versions of PHP or Guzzle, then see the 1.0
branch
Usage
You can read the official DeployBot API documention here - http://deploybot.com/api/
All the DeployBot API endpoints can be called by prefixing the name with get
e.g
use Jaybizzle\DeployBot; $db = new DeployBot('YOUR_API_KEY', 'YOUR_ACCOUNT_NAME'); // get all users $users = $db->getUsers(); // get a specific user $user = $db->getUsers(324);
Some DeployBot API endpoints can accept query string parameters, such as limit
to limit the number of results returned. Taking the above users example, we can simply do this...
$users = $db->limit(10)->getUsers();
These can also be chained...
$users = $db->limit(10)->after(324)->getUsers();
Some more examples...
// list deployments for environment and limit results $deployments = $db->environmentId(3452)->limit(10)->getDeployments(); // list repositories and limit results $repositories = $db->limit(20)->getRepositories();
NOTE: Query parameters are listed in the DeployBot API docs as snake_case
but we access them using camelCase
methods so all method calls have a consistent naming convention