dev-master
9999999-devExpedia API for Laravel 5
MIT
The Requires
by Andrey Yakimenko
laravel api expedia
0.0.1
0.0.1.0Expedia API for Laravel 5
MIT
The Requires
by Andrey Yakimenko
laravel api expedia
Wallogit.com
2017 © Pedro Peláez
Expedia API for Laravel 5
This is a simple Laravel Service Provider providing access to the Expedia API., (*1)
Add the package in your composer.json by executing the command., (*2)
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:, (*3)
'providers' => [
Galiasay\Expedia\ExpediaServiceProvider::class,
];
And add an alias:, (*4)
'aliases' => [
'ExpediaApi' => \Galiasay\Expedia\Facades\ExpediaApi::class
];
Create configuration file and migration table using artisan:, (*5)
$ php artisan vendor:publish
Execute the database migrations:, (*6)
$ php artisan migrate
Then update config/expedia.php with your credentials. You can also update your .env file with the following:, (*7)
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
Expedia API for Laravel 5
MIT
laravel api expedia
Expedia API for Laravel 5
MIT
laravel api expedia