Skip to content

Commit 8840ce9

Browse files
committed
Updated minimum PHP version to 5.5
1 parent f4b1732 commit 8840ce9

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ cache:
99
matrix:
1010
fast_finish: true
1111
include:
12-
- php: 5.3
13-
- php: 5.4
1412
- php: 5.5
1513
env:
1614
- EXECUTE_CS_CHECK=true

composer.json

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,26 +27,30 @@
2727
}
2828
},
2929
"require": {
30-
"php": ">=5.3.23",
31-
"zendframework/zend-eventmanager": ">=2.3,<2.5",
32-
"zendframework/zend-http": ">=2.3,<2.5",
33-
"zendframework/zend-json": ">=2.3,<2.5",
34-
"zendframework/zend-mvc": ">=2.3,<2.5",
35-
"zendframework/zend-view": ">=2.3,<2.5"
30+
"php": ">=5.5",
31+
"zendframework/zend-eventmanager": "~2.3",
32+
"zendframework/zend-http": "~2.3",
33+
"zendframework/zend-json": "~2.3",
34+
"zendframework/zend-mvc": "~2.3",
35+
"zendframework/zend-view": "~2.3"
3636
},
3737
"require-dev": {
38-
"phpunit/PHPUnit": "3.7.*",
39-
"zendframework/zend-console": ">=2.3,<2.5",
40-
"zendframework/zend-loader": ">=2.3,<2.5",
41-
"squizlabs/php_codesniffer": "^2.3"
38+
"phpunit/phpunit": "~4.7",
39+
"zendframework/zend-console": "~2.3",
40+
"zendframework/zend-loader": "~2.3",
41+
"squizlabs/php_codesniffer": "^2.3.1"
4242
},
4343
"autoload": {
4444
"psr-4": {
45-
"ZF\\ApiProblem\\": "src/",
46-
"ZFTest\\ApiProblem\\": "test/"
45+
"ZF\\ApiProblem\\": "src/"
4746
},
4847
"classmap": [
4948
"Module.php"
5049
]
50+
},
51+
"autoload-dev": {
52+
"psr-4": {
53+
"ZFTest\\ApiProblem\\": "test/"
54+
}
5155
}
5256
}

phpcs.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
<!-- inherit rules from: -->
1010
<rule ref="PSR2"/>
11+
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
1112
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace">
1213
<properties>
1314
<property name="ignoreBlankLines" value="false"/>

0 commit comments

Comments
 (0)