Skip to content

Commit 1b65f36

Browse files
authored
Merge pull request #16 from php-api-clients/qa-update-to-phpunit-6
Update to PHPUnit 6
2 parents 21b417a + e9c2c25 commit 1b65f36

16 files changed

+189
-915
lines changed

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,5 @@ cs:
1616
unit:
1717
composer unit
1818

19-
mutation:
20-
composer mutation
21-
2219
ci-coverage: init
2320
composer ci-coverage

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ init:
2828
## Install PHP and composer, and run the appropriate composer command
2929
install:
3030
- IF EXIST c:\tools\php (SET PHP=0)
31-
- ps: appveyor-retry cinst --ignore-checksums -y php --version ((choco search php --exact --all-versions -r | select-string -pattern $Env:php_ver_target | Select-Object -first 1) -replace '[php|]','')
31+
- ps: appveyor-retry cinst -y php --ignore-checksums --version ((choco search php --exact --all-versions -r | select-string -pattern $Env:php_ver_target | Select-Object -first 1) -replace '[php|]','')
3232
- cd c:\tools\php
3333
- IF %PHP%==1 copy php.ini-production php.ini /Y
3434
- IF %PHP%==1 echo date.timezone="UTC" >> php.ini

composer.json

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
},
1818
"require-dev": {
1919
"guzzlehttp/psr7": "^1.3",
20-
"humbug/humbug": "1.0.0-alpha2",
21-
"phpunit/phpunit": "^5.6",
20+
"phpunit/phpunit": "^6.0",
2221
"squizlabs/php_codesniffer": "^2.6"
2322
},
2423
"autoload": {
@@ -47,14 +46,9 @@
4746
"@ensure-installed",
4847
"phpunit --colors=always -c phpunit.xml.dist --coverage-text --coverage-html covHtml --coverage-clover ./build/logs/clover.xml"
4948
],
50-
"mutation": [
51-
"@ensure-installed",
52-
"if [ `php -m | grep xdebug | wc -l` -gt 0 ]; then humbug --ansi --incremental; fi"
53-
],
5449
"qa-all": [
5550
"@cs",
56-
"@unit",
57-
"@mutation"
51+
"@unit"
5852
],
5953
"qa-windows": [
6054
"@cs",

0 commit comments

Comments
 (0)