aviasales / hotellook-yii-api
Installs: 20 476
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 25
Forks: 1
Open Issues: 0
Requires
- php: >=5.3.0
- yiisoft/yii: *
This package is not auto-updated.
Last update: 2025-01-04 16:00:36 UTC
README
-
Grab package via composer:
$ composer require aviasales/hotellook-yii-api
-
Add namespace alias to your application's config:
... 'aliases' => array( 'hotellook.composer.api' => 'application.vendor.aviasales.hotellook-yii-api', ), ...
-
Add application component
... 'components' => array( ... 'hotellookApi' => array( 'class' => 'hotellook\composer\api\Agent', 'host' => 'http://hotellook.com/api', 'login' => YOUR_LOGIN, 'token' => YOUR_TOKEN, ), ... ), ...