aviasales / hotellook-yii-api
此包的最新版本(v1.6)没有可用的许可证信息。
v1.6
2013-12-02 13:39 UTC
Requires
- php: >=5.3.0
- yiisoft/yii: *
This package is not auto-updated.
Last update: 2024-09-28 14:43:00 UTC
README
-
通过 composer 获取包
$ composer require aviasales/hotellook-yii-api
-
将命名空间别名添加到您的应用程序配置中
... 'aliases' => array( 'hotellook.composer.api' => 'application.vendor.aviasales.hotellook-yii-api', ), ...
-
添加应用程序组件
... 'components' => array( ... 'hotellookApi' => array( 'class' => 'hotellook\composer\api\Agent', 'host' => 'http://hotellook.com/api', 'login' => YOUR_LOGIN, 'token' => YOUR_TOKEN, ), ... ), ...