Skip to content

Commit bb4f2e4

Browse files
authored
Merge pull request #479 from localheinz/fix/script
Fix: No need to specify path to bin directory
2 parents 8b2c0a3 + 1a91e67 commit bb4f2e4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@
5757
}
5858
},
5959
"scripts": {
60-
"test" : "vendor/bin/phpunit",
61-
"testOnly" : "vendor/bin/phpunit --colors --filter",
62-
"coverage" : "vendor/bin/phpunit --coverage-text",
63-
"style-check" : "vendor/bin/php-cs-fixer fix --dry-run --verbose --diff",
64-
"style-fix" : "vendor/bin/php-cs-fixer fix --verbose"
60+
"test" : "phpunit",
61+
"testOnly" : "phpunit --colors --filter",
62+
"coverage" : "phpunit --coverage-text",
63+
"style-check" : "php-cs-fixer fix --dry-run --verbose --diff",
64+
"style-fix" : "php-cs-fixer fix --verbose"
6565
}
6666
}

0 commit comments

Comments
 (0)