eveseat / eseye
A Standalone PHP ESI (EVE Swagger Interface) Client Library
Installs: 18 100
Dependents: 31
Suggesters: 0
Security: 0
Stars: 50
Watchers: 11
Forks: 30
Open Issues: 9
Requires
- php: ^8.1
- ext-gmp: *
- ext-json: *
- ext-mbstring: *
- ext-openssl: *
- guzzlehttp/psr7: ^2.0
- monolog/monolog: ^3.0
- nesbot/carbon: ^2.0
- psr/http-client: ^1.0
- psr/http-client-implementation: *
- psr/http-factory: ^1.0
- psr/http-factory-implementation: *
- psr/log: ^3.0
- psr/simple-cache: ^3.0
- web-token/jwt-checker: ^3.0
- web-token/jwt-signature-algorithm-ecdsa: ^3.0
- web-token/jwt-signature-algorithm-hmac: ^3.0
- web-token/jwt-signature-algorithm-rsa: ^3.0
Requires (Dev)
- ext-memcache: *
- guzzlehttp/guzzle: ^7.0
- m6web/redis-mock: ^5.0
- mikey179/vfsstream: ~1
- mockery/mockery: ^1.0
- phpunit/phpunit: ^10.0
- predis/predis: ^2.0
Suggests
- ext-memcache: Required to use the memcache cache driver.
- ext-memcached: Required to use the memcached cache driver.
- guzzlehttp/guzzle: A widely used http client library.
- monolog/monolog: A widely used log library.
- predis/predis: Required to use the redis cache driver.
This package is auto-updated.
Last update: 2024-10-06 10:54:10 UTC
README
eseye
👾 A Standalone, Dynamic ESI (EVE Swagger Interface) Client Library written in PHP
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!