lacunaphp/api-client

0.5.5 2016-03-10 01:13 UTC

This package is not auto-updated.

Last update: 2024-04-13 13:52:01 UTC


README

Build Status

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) {
	...
}