2017 © Pedro Peláez
 

library rancher-api

Rancher API is a set of PHP classes for interacting with Rancher

image

mauchede/rancher-api

Rancher API is a set of PHP classes for interacting with Rancher

  • Tuesday, January 19, 2016
  • by mauchede
  • Repository
  • 3 Watchers
  • 12 Stars
  • 277 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 7 Forks
  • 1 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Rancher API

Rancher API is a set of PHP classes for interacting with Rancher., (*1)

⚠️ This project is no longer maintained. ⚠️, (*2)

SensioLabsInsight, (*3)

 Installation

Rancher API can be installed via composer:, (*4)

composer require mauchede/rancher-api

Note: To use the JMS annotation, you may have to configure your autoload. You can find an example in bootstrap.php.dist., (*5)

Usage

use Mauchede\RancherApi\Client\Client;
use Mauchede\RancherApi\Resource\Project;

$client = new Client('access_key', 'secret_key');
$project = $client->get('endpoint', Project::class);
$containers = $project->getContainers();

endpoint and the API Keys (access_key and secret_key) can be found in Rancher settings ([Rancher URL]/settings/api)., (*6)

Note: API keys are only available for one project/environment., (*7)

The Versions

19/01 2016

dev-master

9999999-dev http://github.com/mauchede/rancher-api

Rancher API is a set of PHP classes for interacting with Rancher

  Sources   Download

MIT

The Requires

 

The Development Requires

api client rancher