| Package Data | |
|---|---|
| Maintainer Username: | AdamKyle |
| Maintainer Contact: | adamkylebalan@gmail.com (Adam Balan) |
| Package Create Date: | 2016-03-11 |
| Package Last Update: | 2016-06-19 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-30 03:04:28 |
| Package Statistics | |
|---|---|
| Total Downloads: | 42 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 0 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
This small library is a bridge between the Eve Public Crest PHP Library and the Laravel Framework. it is the continued efforts of the Eve Public Crest PHP Library.
composer require evemarket/eve-market-details-laravel-bridge
Register the provider:
'providers' => [
...
EveOnlineBridge\Service\Provider\EveMarketProvider::class
],
Register any of the following facades:
'aliases' => [
...
'EvePrices' => EveOnlineBridge\Service\Facades\PricesFacade::class,
'EveRegions' => EveOnlineBridge\Service\Facades\RegionsFacade::class,
'EveMarketGroups' => EveOnlineBridge\Service\Facades\MarketGroupsFacade::class,
'EveItemDetails' => EveOnlineBridge\Service\Facades\DetailsFacade::class,
'EveRegionOrders' => EveOnlineBridge\Service\Facades\OrderFacade::class,
'EveMarketTypes' => EveOnlineBridge\Service\Facades\TypesFacade::class,
'EveItemHistory' => EveOnlineBridge\Service\Facades\MarketHistoryFacade::class
],
Thats it. You are all ready to go. Each of these services maps to a class that can be injected into a controller action
or called statically via: EvePrices::fnName().
You can read the Eve Online Public Crest README to learn more about the library.
Please see the Eve Online Public Crest for tests of the actual library.