Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit 68f4f8b

Browse files
committed
Merge branch 'hotfix/dependencies' into develop
Forward port #42
2 parents a59362e + b8725e3 commit 68f4f8b

File tree

3 files changed

+20
-21
lines changed

3 files changed

+20
-21
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ matrix:
2727
- php: 7
2828
- php: hhvm
2929
allow_failures:
30-
- php: 7
3130
- php: hhvm
3231

3332
notifications:

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ All notable changes to this project will be documented in this file, in reverse
3636

3737
### Fixed
3838

39-
- Nothing.
39+
- [#42](https://github.com/zendframework/zend-http/pull/42) updates dependencies
40+
to ensure it can work with PHP 5.5+ and 7.0+, as well as zend-stdlib
41+
2.5+/3.0+.
4042

4143
## 2.5.3 - 2015-09-14
4244

composer.json

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,32 @@
77
"http"
88
],
99
"homepage": "https://github.com/zendframework/zend-http",
10-
"autoload": {
11-
"psr-4": {
12-
"Zend\\Http\\": "src/"
13-
}
14-
},
15-
"require": {
16-
"php": ">=5.5",
17-
"zendframework/zend-loader": "~2.5",
18-
"zendframework/zend-stdlib": "~2.5",
19-
"zendframework/zend-uri": "~2.5",
20-
"zendframework/zend-validator": "~2.5"
21-
},
22-
"minimum-stability": "dev",
23-
"prefer-stable": true,
2410
"extra": {
2511
"branch-alias": {
2612
"dev-master": "2.5-dev",
2713
"dev-develop": "2.6-dev"
2814
}
2915
},
16+
"require": {
17+
"php": "^5.5 || ^7.0",
18+
"zendframework/zend-loader": "^2.5",
19+
"zendframework/zend-stdlib": "^2.5 || ^3.0",
20+
"zendframework/zend-uri": "^2.5",
21+
"zendframework/zend-validator": "^2.5"
22+
},
23+
"require-dev": {
24+
"fabpot/php-cs-fixer": "1.7.*",
25+
"phpunit/PHPUnit": "^4.0",
26+
"zendframework/zend-config": "^2.5"
27+
},
28+
"autoload": {
29+
"psr-4": {
30+
"Zend\\Http\\": "src/"
31+
}
32+
},
3033
"autoload-dev": {
3134
"psr-4": {
3235
"ZendTest\\Http\\": "test/"
3336
}
34-
},
35-
"require-dev": {
36-
"fabpot/php-cs-fixer": "1.7.*",
37-
"phpunit/PHPUnit": "~4.0",
38-
"zendframework/zend-config": "~2.5"
3937
}
4038
}

0 commit comments

Comments
 (0)