Skip to content

Commit e6530e6

Browse files
committed
Fix phpunit version to be <5.4 (with old syntax)
Since phpunit 5.4 new syntax is used, so it BC breaking point. Stick with this version for now unless tests adjusted.
1 parent 363847d commit e6530e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
"symfony/dependency-injection": ">=2.7,<4",
1919
"symfony/event-dispatcher": ">=2.7,<4",
2020
"symfony/http-kernel": ">=2.7,<4",
21-
"doctrine/doctrine-cache-bundle": "~1.0",
22-
"php-tmdb/api": "~2.1",
23-
"twig/twig": "~1.11|~2.0"
21+
"doctrine/doctrine-cache-bundle": "^1.0",
22+
"php-tmdb/api": "^2.1",
23+
"twig/twig": "^1.11|^2.0"
2424
},
2525
"require-dev": {
26-
"phpunit/phpunit": "~5.0",
26+
"phpunit/phpunit": "~5.0,<5.4",
2727
"symfony/framework-bundle": ">=2.7,<4"
2828
},
2929
"autoload": {

0 commit comments

Comments
 (0)