tyldar / rancher-api
Installs: 402
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 4
Open Issues: 0
pkg:composer/tyldar/rancher-api
Requires
- guzzlehttp/guzzle: ^6.3
- vlucas/phpdotenv: ^2.4
Requires (Dev)
- phpunit/phpunit: 4.*
This package is auto-updated.
Last update: 2023-11-28 23:56:35 UTC
README
Bundle of PHP classes to interact with Rancher (Container Management System) API.
Installation
RancherAPI uses compose to make installation easier.
Install via composer
composer require tyldar/rancher-api
Usage
RancherAPI is incredibly intuitive to use.
Introduction
<?php require 'vendor/autoload.php'; use Tyldar\Rancher\Rancher; try { $rancher = new Rancher("RANCHERHOSTURL", "RANCHERACCESSKEY", "RANCHERSECRETKEY", "PROJECT"); echo json_encode($rancher->containers()->getAll()); } catch(Exception $e) { var_dump($e->getResponse()->getBody()->getContents()); } ?>