rundeck-sdk-php
![Software License][ico-license]
![Coverage Status][ico-scrutinizer]
![Total Downloads][ico-downloads], (*1)
PHP client for Rundeck web API., (*2)
Install
Via Composer, (*3)
``` bash
$ composer require akramfares/rundeck-sdk-php, (*4)
## Usage
``` php
$client = new Rundeck\Rundeck(ENDPOINT, AUTH_TOKEN, API_VERSION);
// Get all projects
$projects = $client->project()->findAll();
foreach($projects["project"] as $project) {
echo $project["name"]. "\n";
}
// Get jobs of project
$jobs = $client->project("Project")->get("jobs/export");
foreach($jobs["job"] as $job) {
echo $job["name"]. "\n";
}
// Get job info
$job = $client->job("c4ec2b60-ac83-4ee2-9266-67ce795c9603")->find();
echo $job["job"]["name"] . ": " . $job["job"]["id"];
// Get job executions
$executions = $client->job("c4ec2b60-ac83-4ee2-9266-67ce795c9603")->get('executions');
foreach ($executions["execution"] as $execution) {
echo $execution["job"]["name"] . " started at " . $execution["date-started"] ."\n";
}
// Get execution info
$execution = $client->execution("4939")->find();
echo $execution["job"]["name"] . " started at " . $execution["date-started"];
Change log
Please see CHANGELOG for more information on what has changed recently., (*5)
Testing
bash
$ composer test, (*6)
Contributing
Please see CONTRIBUTING and CONDUCT for details., (*7)
Security
If you discover any security related issues, please email akramfares |at| gmail |.| com instead of using the issue tracker., (*8)
Credits
License
The MIT License (MIT). Please see License File for more information., (*9)