Skip to content

Commit 43eeb8e

Browse files
phpunit configuration setting "strict" is deprecated
disabled lowest/latest DEPS environtment as we are using a fixed version of zendframework composer now requires specific components of zendframework instead of all
1 parent ac680fc commit 43eeb8e

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,26 @@ env:
2020
- COMPOSER_ZPK_ARGS="--no-dev --classmap-authoritative"
2121
- COMPOSER_DISCARD_CHANGES=1
2222
- COVERAGE_DEPS="satooshi/php-coveralls"
23-
matrix:
24-
- DEPS=lowest
25-
- DEPS=latest
23+
# matrix:
24+
# - DEPS=lowest
25+
# - DEPS=latest
2626

2727
matrix:
2828
fast_finish: true
2929
include:
3030
- php: 5.6
3131
env:
32-
- DEPS=latest
32+
# - DEPS=latest
3333
- CS_CHECK=true
3434
- TEST_COVERAGE=true
3535
- php: 5.6
3636
env:
37-
- DEPS=latest
37+
# - DEPS=latest
3838
- BUILD_ZPK="$(if [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then echo -n 'true'; else echo -n 'false'; fi)"
3939
- PATH="$HOME/.composer/vendor/bin:$HOME/.local/bin:$PATH"
4040
exclude:
4141
- php: 5.6
42-
env: DEPS=latest
42+
# env: DEPS=latest
4343
allow_failures:
4444
- php: 7.0
4545
- php: 7.1

composer.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
{
22
"name": "zend-pattern/ZendServerDeploymentHelper",
33
"require": {
4-
"zendframework/zendframework": "=2.4.8"
4+
"zendframework/zend-db": "2.4.8",
5+
"zendframework/zend-eventmanager": "2.4.8",
6+
"zendframework/zend-i18n": "2.4.8",
7+
"zendframework/zend-log": "2.4.8",
8+
"zendframework/zend-servicemanager": "2.4.8"
59
},
610
"require-dev": {
7-
"phpunit/phpunit": "^4.8.36",
8-
"mockery/mockery": "=0.9.4"
11+
"mockery/mockery": "0.9.4",
12+
"phpunit/phpunit": "4.8.36",
13+
"zendframework/zend-loader": "2.4.8"
914
},
1015
"autoload": {
1116
"psr-4": {

phpunit.xml.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
convertNoticesToExceptions="true"
77
convertWarningsToExceptions="true"
88
beStrictAboutOutputDuringTests="true"
9-
strict="true"
109
forceCoversAnnotation="false"
1110
stopOnError="false"
1211
stopOnFailure="false"

0 commit comments

Comments
 (0)