Skip to content

Commit

Permalink
Merge 8400894 into 8b891bb
Browse files Browse the repository at this point in the history
  • Loading branch information
sbuerk committed Apr 2, 2024
2 parents 8b891bb + 8400894 commit 0b38395
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions composer.json
Expand Up @@ -36,20 +36,19 @@
],
"scripts": {
"test": [
"phpunit --color=always"
"@php vendor/bin/phpunit --color=always"
],
"test-no-coverage": [
"phpunit --color=always --no-coverage"
"@php vendor/bin/phpunit --color=always --no-coverage"
],
"check": [
"php-cs-fixer fix --ansi --dry-run --diff",
"phpcs --report-width=200 --report-summary --report-full samples/ src/ tests/ --ignore=src/PhpWord/Shared/PCLZip --standard=PSR2 -n",
"phpmd src/,tests/ text ./phpmd.xml.dist --exclude pclzip.lib.php",
"@php vendor/bin/php-cs-fixer fix --ansi --dry-run --diff",
"@php vendor/bin/phpmd src/,tests/ text ./phpmd.xml.dist --exclude pclzip.lib.php",
"@test-no-coverage",
"phpstan analyse --ansi"
"@php vendor/bin/phpstan analyse --ansi"
],
"fix": [
"php-cs-fixer fix --ansi"
"@php vendor/bin/php-cs-fixer fix --ansi"
]
},
"scripts-descriptions": {
Expand Down

0 comments on commit 0b38395

Please sign in to comment.