Skip to content

Commit

Permalink
TASK: Tweak composer script names
Browse files Browse the repository at this point in the history
  • Loading branch information
bwaidelich committed Aug 29, 2023
1 parent b22064b commit 7e44e36
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,16 @@
}
},
"scripts": {
"test-phpstan": "phpstan",
"test-cs": "phpcs --colors src",
"test-cs:fix": "phpcbf --colors src",
"test-unit": "phpunit tests/Unit",
"test-integration": "phpunit tests/Integration",
"test:phpstan": "phpstan",
"test:cs": "phpcs --colors src",
"test:cs:fix": "phpcbf --colors src",
"test:unit": "phpunit tests/Unit",
"test:integration": "phpunit tests/Integration",
"test": [
"@test-phpstan",
"@test-cs",
"@test-unit",
"@test-integration"
"@test:phpstan",
"@test:cs",
"@test:unit",
"@test:integration"
]
}
}

0 comments on commit 7e44e36

Please sign in to comment.