This commit is contained in:
Timothy Warren 2017-02-28 16:39:14 -05:00
parent bee154de87
commit ba7d95ee4f
3 ha cambiato i file con 2 aggiunte e 4 eliminazioni

Vedi File

@ -3,7 +3,6 @@ test:7:
- sh build/docker_install.sh > /dev/null
- apk add --no-cache php7-phpdbg
- curl -sS https://getcomposer.org/installer | php
- php composer.phar update --ignore-platform-reqs
- php composer.phar install --ignore-platform-reqs
image: php:7-alpine
script:
@ -14,7 +13,6 @@ test:7.1:
- sh build/docker_install.sh > /dev/null
- apk add --no-cache php7.1-phpdbg
- curl -sS https://getcomposer.org/installer | php
- php composer.phar update --ignore-platform-reqs
- php composer.phar install --ignore-platform-reqs
image: php:7.1-alpine
script:

Vedi File

@ -4,7 +4,6 @@
stopOnFailure="false"
bootstrap="../tests/bootstrap.php"
beStrictAboutTestsThatDoNotTestAnything="true"
checkForUnintentionallyCoveredCode="true"
>
<filter>
<whitelist>

Vedi File

@ -41,9 +41,10 @@
"phpstan/phpstan": "^0.6.4"
},
"scripts": {
"coverage": "vendor/bin/phpunit -c build",
"coverage": "phpdbg -qrr -- vendor/bin/phpunit -c build",
"build": "vendor/bin/robo build",
"docs": "cd build && ../vendor/bin/phpdox && cd ..",
"phpstan": "phpstan analyse src tests",
"test": "vendor/bin/phpunit"
},
"suggest": {