cloudcontrol/phpcclib
最新稳定版本:v0.1.6
Composer 安装命令:
composer require cloudcontrol/phpcclib
包简介
cloudControl api helper
关键字:
README 文档
README
Install With Composer:
Get composer to your project folder:
$ curl -s https://getcomposer.org/installer | php
Create a file composer.json with:
{
"require": {
"cloudcontrol/phpcclib": "dev-master"
},
"repositories": [
{
"type": "pear",
"url": "http://pear.php.net"
}
]
}
Run in your project folder:
$ ./composer.phar install
Usage Example:
<?php require 'vendor/autoload.php'; use CloudControl\API; $api = new Api(); $email = 'your@example.com'; $password = 's€cr€t'; $api->auth($email, $password); foreach($api->application_getList() as $app){ printf("%s (%s)%s", $app->name, $app->type->name, PHP_EOL); } ?>
统计信息
- 总下载量: 963
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache
- 更新时间: 2013-02-14