Browse Source

Pin phpunit to verion 5.7

With the release of phpunit version 6.0 it is not possible for us to test
the framework with versions older than PHP 7.

There are clever ways of solving this problem, but I think there are no interesting
features in verion 6 that we require for the time being.
Jose Lorenzo Rodriguez 9 years ago
parent
commit
3cefc1750e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      composer.json

+ 1 - 1
composer.json

@@ -30,7 +30,7 @@
         "ext-openssl": "To use Security::encrypt() or have secure CSRF token generation."
     },
     "require-dev": {
-        "phpunit/phpunit": "*",
+        "phpunit/phpunit": "~5.7.0",
         "cakephp/cakephp-codesniffer": "~2.1"
     },
     "autoload": {