seatplus/eseye

A fork of eveseat/eseye: A Standalone PHP ESI (EVE Swagger Interface) Client Library. Supports Monolog ^2.0 and php redis

Maintainers

Details

github.com/seatplus/eseye

Source

Installs: 4 667

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 31

3.0.0 2020-10-23 15:39 UTC

This package is auto-updated.

Last update: 2023-03-23 21:05:25 UTC


README

Build Status Code Coverage Test Coverage Latest Stable Version Total Downloads License StyleCI

eseye

🛰️🛰️🛰️ A fork of eveseat/eseye: A Standalone PHP ESI (EVE Swagger Interface) Client Library. Supports Monolog ^2.0 and php redis

example usage

Its supposed to be simple!

// initialization stuff
$esi = new Eseye();

// Optionally, set the ESI endpoint version to use.
// If you dont set this, Eseye will use /latest
$esi->setVersion('v4');

// make a call
$character_info = $esi->invoke('get', '/characters/{character_id}/', [
    'character_id' => 1477919642,
]);

// get data!
echo $character_info->name;

For a more complete usage example, please refer to example.php

documentation

For up to date documentation, more examples and other goodies, please check out the project wiki!