Add Composer script check

This commit is contained in:
Jakub Vrana
2025-09-09 09:58:59 +02:00
parent bd1dffe086
commit d15d0b2ef3

View File

@@ -33,7 +33,11 @@
"php": ">=7.4"
},
"scripts": {
"clean": "rm -f adminer*.php editor*.php",
"compile": "@php compile.php"
"check": [
"phpcs",
"phpstan analyse -c phpstan.neon"
],
"compile": "@php compile.php",
"clean": "rm -f adminer*.php editor*.php"
}
}