Skip to content

Commit

Permalink
Made it easier to run tests and static analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
freost committed Oct 22, 2024
1 parent c44a335 commit 1edd435
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,13 @@
"ext-openssl": "Required to use the crypto library",
"ext-pdo": "Required to use the database library",
"ext-simplexml": "Required if you want the error handlers to be able to serve XML"
},
"scripts": {
"phpunit": "phpunit",
"phpstan": "phpstan analyze src --no-progress --memory-limit=-1 -c phpstan.neon",
"qa": [
"@phpstan",
"@phpunit"
]
}
}

0 comments on commit 1edd435

Please sign in to comment.