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

Commit ae423a4

Browse files
committed
Dropped PHP 5.6 and PHP 7.0
Updated packages in composer to latest stable version and PHP requirements changed to PHP ^7.1 Updated suggestion in composer.
1 parent 3ff9526 commit ae423a4

File tree

3 files changed

+646
-298
lines changed

3 files changed

+646
-298
lines changed

.travis.yml

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -23,34 +23,16 @@ env:
2323

2424
matrix:
2525
include:
26-
- php: 5.6
27-
env:
28-
- DEPS=lowest
29-
- php: 5.6
30-
env:
31-
- DEPS=locked
32-
- TEST_COVERAGE=true
33-
- DEPLOY_DOCS="$(if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then echo -n 'true' ; else echo -n 'false' ; fi)"
34-
- PATH="$HOME/.local/bin:$PATH"
35-
- php: 5.6
36-
env:
37-
- DEPS=latest
38-
- php: 7
39-
env:
40-
- DEPS=lowest
41-
- php: 7
42-
env:
43-
- DEPS=locked
44-
- CS_CHECK=true
45-
- php: 7
46-
env:
47-
- DEPS=latest
4826
- php: 7.1
4927
env:
5028
- DEPS=lowest
5129
- php: 7.1
5230
env:
5331
- DEPS=locked
32+
- DEPLOY_DOCS="$(if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then echo -n 'true' ; else echo -n 'false' ; fi)"
33+
- PATH="$HOME/.local/bin:$PATH"
34+
- TEST_COVERAGE=true
35+
- CHECK_CS=true
5436
- php: 7.1
5537
env:
5638
- DEPS=latest

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@
1414
}
1515
},
1616
"require": {
17-
"php": "^5.6 || ^7.0",
17+
"php": "^7.1",
1818
"container-interop/container-interop": "^1.2",
1919
"psr/container": "^1.0",
2020
"zendframework/zend-stdlib": "^3.1"
2121
},
2222
"require-dev": {
23-
"ocramius/proxy-manager": "^1.0 || ^2.0",
24-
"phpbench/phpbench": "^0.10.0",
25-
"phpunit/phpunit": "^5.7 || ^6.0.6",
26-
"mikey179/vfsStream": "^1.6",
23+
"mikey179/vfsStream": "^1.6.4",
24+
"ocramius/proxy-manager": "^2.1.1",
25+
"phpbench/phpbench": "^0.13.0",
26+
"phpunit/phpunit": "^6.2.3",
2727
"zendframework/zend-coding-standard": "~1.0.0"
2828
},
2929
"suggest": {
30-
"ocramius/proxy-manager": "ProxyManager 1.* to handle lazy initialization of services",
31-
"zendframework/zend-stdlib": "zend-stdlib ^2.5 if you wish to use the MergeReplaceKey or MergeRemoveKey features in Config instances"
30+
"ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services",
31+
"zendframework/zend-stdlib": "zend-stdlib ^2.7.7 | ^3.1 if you wish to use the MergeReplaceKey or MergeRemoveKey features in Config instances"
3232
},
3333
"minimum-stability": "dev",
3434
"prefer-stable": true,

0 commit comments

Comments
 (0)