lookyman / rundeck-api
此包已被弃用且不再维护。未建议替代包。
Rundeck API 封装器
dev-master
2016-12-13 15:22 UTC
Requires
- php: >=7.0
- guzzlehttp/guzzle: ^6.2
Requires (Dev)
- phpunit/phpunit: ^5.7
This package is auto-updated.
Last update: 2024-05-04 15:56:27 UTC
README
$configuration = new \Lookyman\Rundeck\Api\Configuration( new \GuzzleHttp\Client(), 'https://rundeck.mydomain.com/api/17', new \Lookyman\Rundeck\Api\Authentication\TokenHeaderAuthentication('apitoken'), new \Lookyman\Rundeck\Api\Format\JsonFormat() ); $client = new \Lookyman\Rundeck\Api\Client($configuration); $client ->project() ->job() ->list('MyProject') ->then(function (\Psr\Http\Message\ResponseInterface $response) { echo (string) $response->getBody(); }) ->wait();