Skip to content

Commit

Permalink
Add composer scripts for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromegamez committed Mar 17, 2024
1 parent bd47c8f commit dad8bca
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,18 @@
"type": "github",
"url": "https://github.com/sponsors/jeromegamez"
}
]
],
"scripts": {
"analyse": [
"XDEBUG_MODE=off vendor/bin/phpstan"
],
"analyze": "@analyse",
"test": [
"@analyze",
"@test-units"
],
"test-units": [
"vendor/bin/phpunit --testdox"
]
}
}

0 comments on commit dad8bca

Please sign in to comment.