Skip to content

Commit f82deba

Browse files
committed
merge develop
2 parents eb767c1 + fff5a5d commit f82deba

22 files changed

+554
-74
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@ before_script:
1010
- export QINIU_KEY_NAME="file_name"
1111
script:
1212
- cd tests; phpunit .
13-

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,56 @@
11
## CHANGE LOG
22

3+
### v6.1.8
4+
5+
2014-4-6 issues [#68](https://github.com/qiniu/php-sdk/pull/68)
6+
7+
- [#66]上传策略[支持mimeLimit字段](http://developer.qiniu.com/docs/v6/api/reference/security/put-policy.html#put-policy-mime-limit),用于限定上传文件的mimeType。
8+
- [#67] 新增接口的调用范例
9+
10+
### v6.1.7
11+
12+
2014-2-19 issues [#64](https://github.com/qiniu/php-sdk/pull/64)
13+
14+
- 修复 PutExtra.Params 无效的问题
15+
16+
### v6.1.6
17+
18+
2014-2-17 issues [#62](https://github.com/qiniu/php-sdk/pull/62)
19+
20+
- 上传策略[支持transform/fopTimeout字段](http://developer.qiniu.com/docs/v6/api/reference/security/put-policy.html#put-policy-transform),用于支持对上传内容做一次同步的数据处理,并将结果作为最终资源保存
21+
22+
23+
### v6.1.5
24+
25+
2014-2-13 issues [#59](https://github.com/qiniu/php-sdk/pull/59)
26+
27+
- 修复 PutExtra.MimeType 无效的问题
28+
29+
30+
### v6.1.4
31+
32+
2013-10-25 issues [#52](https://github.com/qiniu/php-sdk/pull/52)
33+
34+
- PutPolicy: 增加 saveKey、persistentOps/persistentNotifyUrl、fsizeLimit 等支持
35+
36+
37+
### v6.1.3
38+
39+
2013-10-09 issues [#50](https://github.com/qiniu/php-sdk/pull/50)
40+
41+
- 断点续上传使用mkfile
42+
- 修订文档
43+
- 消除测试用例并发问题
44+
45+
46+
### v6.1.2
47+
48+
2013-09-24 issue [#40](https://github.com/qiniu/php-sdk/pull/40)
49+
50+
- 解决与某些 PHP 框架不兼容问题(主要是全局变量的定义)
51+
- 改善 `json_decode` 的错误提示(有可能 `json_last_error_msg` 函数不存在)
52+
53+
354
### v6.1.1
455

556
2013-07-04 issue [#24](https://github.com/qiniu/php-sdk/pull/24)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://api.travis-ci.org/qiniu/php-sdk.png?branch=master)](https://travis-ci.org/qiniu/php-sdk)
44

5-
[![Qiniu Logo](http://qiniutek.com/images/logo-2.png)](http://qiniu.com/)
5+
[![Qiniu Logo](http://qiniu-brand.qiniudn.com/5/logo-white-195x105.png)](http://www.qiniu.com/)
66

77

88
## 下载
@@ -34,7 +34,7 @@
3434

3535
## 许可证
3636

37-
Copyright (c) 2012 qiniu.com
37+
Copyright (c) 2012-2014 qiniu.com
3838

3939
基于 MIT 协议发布:
4040

composer.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "qiniu/php-sdk",
3+
"type": "library",
4+
"description": "Qiniu Resource (Cloud) Storage SDK for PHP",
5+
"keywords": ["qiniu","storage","CDN","sdk"],
6+
"homepage": "http://www.qiniu.com/",
7+
"license": "MIT",
8+
"require": {
9+
"php": ">=5.2.4"
10+
},
11+
"autoload": {
12+
"psr-0": { "qiniu\\": "/" }
13+
}
14+
}

0 commit comments

Comments
 (0)