lacunaphp / api-client
0.5.5
2016-03-10 01:13 UTC
Requires
- php: >=5.4.0
- guzzlehttp/command: 0.7.*
- guzzlehttp/guzzle: ~5.0
Requires (Dev)
- phpunit/phpunit: ~4.3
README
Installing via Composer
The recommended method of installation is through Composer.
# Install Composer curl -sS https://getcomposer.org/installer | php
composer require lacunaphp/api-client
{ "require": { "lacunaphp/api-client": "~0.1" } }
Usage
require_once('vendor/autoload.php'); use LacunaPHP\APIClient\Client; $client = new Client('https://us1.lacunaexpanse.com'); try { $result = $client->empire->login([ 'name' => 'empire-name', 'password' => 'empire-password', 'api_key' => 'anonymous' ]); } catch($error) { ... }