aviasales / hotellook-yii-api
Installs: 20 479
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 22
Forks: 1
Open Issues: 0
pkg:composer/aviasales/hotellook-yii-api
Requires
- php: >=5.3.0
- yiisoft/yii: *
This package is not auto-updated.
Last update: 2025-10-25 20:21:14 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, ), ... ), ...