Skip to content

Commit 9affbf4

Browse files
authored
Merge pull request #1306 from Trainmaster/feature-make-composer-scripts-compatible-with-windows
Make Composer scripts compatible with Windows
2 parents 9ffbd98 + d8f4a28 commit 9affbf4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,19 @@
3636
],
3737
"scripts": {
3838
"test": [
39-
"./vendor/bin/phpunit --color=always"
39+
"phpunit --color=always"
4040
],
4141
"test-no-coverage": [
42-
"./vendor/bin/phpunit --color=always --no-coverage"
42+
"phpunit --color=always --no-coverage"
4343
],
4444
"check": [
45-
"./vendor/bin/php-cs-fixer fix --ansi --dry-run --diff",
46-
"./vendor/bin/phpcs --report-width=200 --report-summary --report-full samples/ src/ tests/ --ignore=src/PhpWord/Shared/PCLZip --standard=PSR2 -n",
47-
"./vendor/bin/phpmd src/,tests/ text ./phpmd.xml.dist --exclude pclzip.lib.php",
45+
"php-cs-fixer fix --ansi --dry-run --diff",
46+
"phpcs --report-width=200 --report-summary --report-full samples/ src/ tests/ --ignore=src/PhpWord/Shared/PCLZip --standard=PSR2 -n",
47+
"phpmd src/,tests/ text ./phpmd.xml.dist --exclude pclzip.lib.php",
4848
"@test"
4949
],
5050
"fix": [
51-
"./vendor/bin/php-cs-fixer fix --ansi"
51+
"php-cs-fixer fix --ansi"
5252
]
5353
},
5454
"scripts-descriptions": {

0 commit comments

Comments
 (0)