aviasales / hotellook-yii-api
There is no license information available for the latest version (v1.6) of this package.
v1.6
2013-12-02 13:39 UTC
Requires
- php: >=5.3.0
- yiisoft/yii: *
This package is not auto-updated.
Last update: 2026-02-28 22:13:01 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, ), ... ), ...