1
0
Derivar 0

Add composer scripts and box file

Este cometimento está contido em:
Florian Brinker 2021-05-09 23:23:28 +02:00
ascendente 8d452cf62b
cometimento cece9d0d02
2 ficheiros modificados com 19 adições e 0 eliminações

5
box.json Ficheiro normal
Ver ficheiro

@ -0,0 +1,5 @@
{
"base-path": null,
"output": "build/extension-check.phar",
"chmod": "0700"
}

Ver ficheiro

@ -43,5 +43,19 @@
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"check": [
"./vendor/bin/phpcbf",
"./vendor/bin/phpcs",
"./vendor/bin/phpstan analyse"
],
"test" : [
"./vendor/bin/phpunit tests"
]
},
"scripts-descriptions": {
"check": "Check the sources for problems and style violations",
"test": "Run all tests"
}
}