evemarket/eve-market-details-laravel-bridge

This is a bridge between the Eve Online Public Crest and the Laravel Framework.
42 1
Install
composer require evemarket/eve-market-details-laravel-bridge
Latest Version:0.0.7
PHP:>=5.6.0
License:MIT
Last Updated:Jun 19, 2016
Links: GitHub  ·  Packagist
Maintainer: AdamKyle

Eve Online Public Crest Laravel Bridge

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.

Installation:

composer require evemarket/eve-market-details-laravel-bridge

Set Up

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.

Where are the tests?

Please see the Eve Online Public Crest for tests of the actual library.

Related Packages

sarahman/guzzle-client-trait

This package is intended to handle guzzle client creation, its api calls & their...

3,523 0
sarahman/laravel-http-request-api-log

This library stores the http request api log into a database table.

14,487 1
mikkokut/prismic-laravel

Integrates the Prismic PHP development kit with Laravel.

1,416 1
lanin/laravel-api-exceptions

All in one solution for exception for JSON REST APIs on Laravel and Lumen.

104,625 40
lanin/laravel-api-debugger

Easily debug your JSON API.

1,859,241 231