Misc meta updates

This commit is contained in:
Timothy Warren 2017-02-28 16:39:14 -05:00
parent bee154de87
commit ba7d95ee4f
3 changed files with 2 additions and 4 deletions

View File

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

View File

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

View File

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