Skip to content

Commit 97e1c61

Browse files
committed
Add Composer script shortcuts to simplify testing
1 parent 6f7a42d commit 97e1c61

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

composer.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,17 @@
4545
"branch-alias": {
4646
"dev-master": "2.0-dev"
4747
}
48+
},
49+
"scripts": {
50+
"phpcs": "phpcs",
51+
"phpstan": "phpstan analyse",
52+
"phpunit": "phpunit --no-coverage",
53+
"psalm": "psalm",
54+
"test": [
55+
"@phpcs",
56+
"@phpstan",
57+
"@psalm",
58+
"@phpunit"
59+
]
4860
}
4961
}

0 commit comments

Comments
 (0)