👾 A Standalone, Dynamic ESI (EVE Swagger Interface) Client Library written in PHP
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
For up to date documentation, more examples and other goodies, please check out the project wiki!