Add composer scripts and box file

Bu işleme şunda yer alıyor:
Florian Brinker 2021-05-09 23:23:28 +02:00
ebeveyn 8d452cf62b
işleme cece9d0d02
2 değiştirilmiş dosya ile 19 ekleme ve 0 silme

5
box.json Normal dosya
Dosyayı Görüntüle

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

Dosyayı Görüntüle

@ -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"
}
}