dream 050bfac24d 1 | 8 ay önce | |
---|---|---|
.. | ||
docs | 8 ay önce | |
examples | 8 ay önce | |
src | 8 ay önce | |
tests | 8 ay önce | |
.gitignore | 8 ay önce | |
.scrutinizer.yml | 8 ay önce | |
.travis.yml | 8 ay önce | |
CHANGELOG.md | 8 ay önce | |
CONTRIBUTING.md | 8 ay önce | |
LICENSE | 8 ay önce | |
README.md | 8 ay önce | |
autoload.php | 8 ay önce | |
composer.json | 8 ay önce | |
phpunit.xml.dist | 8 ay önce | |
test-env.sh | 8 ay önce |
通过composer,这是推荐的方式,可以使用composer.json 声明依赖,或者运行下面的命令。SDK 包已经放到这里 qiniu/php-sdk
。
$ composer require qiniu/php-sdk
直接下载安装,SDK 没有依赖其他第三方库,但需要参照 composer的autoloader,增加一个自己的autoloader程序。
Qiniu SDK版本 | PHP 版本 |
---|---|
7.x | cURL extension, 5.3 - 5.6,7.0 |
6.x | cURL extension, 5.2 - 5.6 |
use Qiniu\Storage\UploadManager;
use Qiniu\Auth;
...
$upManager = new UploadManager();
$auth = new Auth($accessKey, $secretKey);
$token = $auth->uploadToken($bucketName);
list($ret, $error) = $upManager->put($token, 'formput', 'hello world');
...
$ ./vendor/bin/phpunit tests/Qiniu/Tests/
详情参考代码提交指南。
The MIT License (MIT).详情见 License文件.