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

Commit 0bf717a

Browse files
committed
Merge branch 'hotfix/updated-deps'
Close #3
2 parents 1a57364 + adf56d8 commit 0bf717a

File tree

3 files changed

+28
-7
lines changed

3 files changed

+28
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ matrix:
2323
- php: 7
2424
- php: hhvm
2525
allow_failures:
26-
- php: 7
26+
- php: hhvm
2727

2828
notifications:
2929
irc: "irc.freenode.org#zftalk.dev"

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file, in reverse chronological order by release.
4+
5+
## 2.5.2 - 2016-02-17
6+
7+
### Added
8+
9+
- Nothing.
10+
11+
### Deprecated
12+
13+
- Nothing.
14+
15+
### Removed
16+
17+
- Nothing.
18+
19+
### Fixed
20+
21+
- [#3](https://github.com/zendframework/zend-uri/pull/3) updates dependencies to
22+
allow the component to work with both PHP 5 and PHP 7 versions, as well as
23+
all 2.X versions of required Zend components.

composer.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,10 @@
1313
}
1414
},
1515
"require": {
16-
"php": ">=5.5",
17-
"zendframework/zend-escaper": "~2.5",
18-
"zendframework/zend-validator": "~2.5"
16+
"php": "^5.5 || ^7.0",
17+
"zendframework/zend-escaper": "^2.5",
18+
"zendframework/zend-validator": "^2.5"
1919
},
20-
"minimum-stability": "dev",
21-
"prefer-stable": true,
2220
"extra": {
2321
"branch-alias": {
2422
"dev-master": "2.5-dev",
@@ -34,4 +32,4 @@
3432
"fabpot/php-cs-fixer": "1.7.*",
3533
"phpunit/PHPUnit": "~4.0"
3634
}
37-
}
35+
}

0 commit comments

Comments
 (0)