Package Data | |
---|---|
Maintainer Username: | galiasay |
Maintainer Contact: | andreyakimenko.ua@gmail.com (Andrey Yakimenko) |
Package Create Date: | 2017-05-30 |
Package Last Update: | 2017-05-31 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:03:15 |
Package Statistics | |
---|---|
Total Downloads: | 96 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 1 |
This is a simple Laravel Service Provider providing access to the Expedia API.
Add the package in your composer.json by executing the command.
composer require galiasay/laravel-expedia
Once Expedia API is installed you need to register the service provider with the application. Open up app/config/app.php
and find the providers
key:
'providers' => [
Galiasay\Expedia\ExpediaServiceProvider::class,
];
And add an alias:
'aliases' => [
'ExpediaApi' => \Galiasay\Expedia\Facades\ExpediaApi::class
];
Create configuration file and migration table using artisan:
$ php artisan vendor:publish
Execute the database migrations:
$ php artisan migrate
Then update config/expedia.php with your credentials. You can also update your .env file with the following:
EXPEDIA_CID = my_expedia_cid
EXPEDIA_API_KEY = my_expedia_api_key
EXPEDIA_SECRET = my_expedia_secret
EXPEDIA_MINOR_REV = my_expedia_rev
$ php artisan expedia:import