kilbot / WooCommerce-Dev-Docker

Development environment for WooCommerce
5 stars 8 forks source link

PHPUnit 6 Drops Support for PHP 5.6 #5

Closed georgearnall closed 7 years ago

georgearnall commented 7 years ago

After trying to install the repo I've come across the following error:

RUN phpunit --version
 ---> Running in 5c971404a1b2
This version of PHPUnit is supported on PHP 7.0 and PHP 7.1.
You are using PHP 5.6.30 (/usr/local/bin/php).

PHPUnit version will need to be fixed at 5.7 in order to complete docker install:

RUN curl https://phar.phpunit.de/phpunit.phar -L > phpunit.phar \
RUN curl https://phar.phpunit.de/phpunit-5.7.phar -L > phpunit.phar \