dev-master
9999999-dev
GPL-3.0+
The Requires
- php >=5.6.0
- guzzlehttp/guzzle ^6.3
The Development Requires
Wallogit.com
2017 © Pedro Peláez
Add andach/igad to your composer.json., (*1)
"andach/igad": "~1.0"
or, (*2)
composer require andach/igad
Run composer update to pull down the latest version of the package., (*3)
Now open up app/config/app.php and add the service provider to your providers array., (*4)
'providers' => array(
Andach\IGAD\IGADServiceProvider::class,
)
Optionally, add the facade to your aliases array, (*5)
'IGAD' => \Andach\IGAD\Facades\IGAD::class,
Add the IGAD to your config/services.php array, (*6)
'IGAD' => [
'xboxapikey' => 'YOUR_IGAD_KEY'
]
// TODO
The returned JSON data is decoded as a PHP object., (*7)
If you have PHPUnit installed in your environment, run:, (*8)
$ phpunit
GPL-3.0+