Skip to content

Commit

Permalink
Merge branch 'master' into infection
Browse files Browse the repository at this point in the history
# Conflicts:
#	composer.json
#	composer.lock
  • Loading branch information
WyriHaximus committed Jan 16, 2018
2 parents 98912f5 + c6d177c commit e59b830
Show file tree
Hide file tree
Showing 4 changed files with 180 additions and 323 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ matrix:
install:
- composer validate
- if [ -z "$dropPlatform" ]; then composer config --unset platform.php; fi;
- if [ -z "$dropPlatform" ]; then composer update --lock; fi;
- if [ -z "$qaExtended" ]; then phpenv config-rm xdebug.ini || :; fi;
- if [ -z "$dependencies" ]; then composer install --prefer-dist; fi;
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --prefer-dist -n; fi;
Expand Down
28 changes: 19 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,17 @@
"infection/infection": "^0.6.2",
"jakub-onderka/php-console-highlighter": "^0.3.2",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"localheinz/composer-normalize": "^0.1.0",
"phake/phake": "^3.0.1",
"phpunit/phpunit": "^6.2"
},
"require-dev": {},
"config": {
"platform": {
"php": "7.0"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"ApiClients\\Tools\\TestUtilities\\": "src/"
Expand All @@ -28,15 +36,13 @@
"ApiClients\\Tests\\Tools\\TestUtilities\\": "tests/"
}
},
"require-dev": {
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.0"
}
},
"scripts": {
"post-update-cmd": [
"composer normalize"
],
"post-install-cmd": [
"composer normalize"
],
"ensure-installed": "composer install --ansi -n -q",
"cs": [
"@ensure-installed",
Expand All @@ -63,11 +69,15 @@
"infection --ansi"
],
"qa-all": [
"composer validate --ansi",
"composer normalize --ansi",
"@lint-php",
"@cs",
"@unit"
],
"qa-all-extended": [
"qa-all-coverage": [
"composer validate --ansi",
"composer normalize --ansi",
"@lint-php",
"@cs",
"@unit-coverage",
Expand Down

0 comments on commit e59b830

Please sign in to comment.