Setup release workflow to upload built phar

This commit is contained in:
itismadness
2023-12-19 22:20:14 +00:00
parent ea2e612319
commit 35240df211
2 changed files with 67 additions and 0 deletions

35
box.json Normal file
View File

@@ -0,0 +1,35 @@
{
"alias": "logchecker.phar",
"compactors": [
"KevinGH\\Box\\Compactor\\Json",
"KevinGH\\Box\\Compactor\\Php"
],
"directories": ["src"],
"exclude-composer-files": false,
"files": [
"bin/logchecker",
"composer.json",
"LICENSE.md"
],
"finder": [
{
"name": "*.php",
"exclude": [
"File",
"mikey179",
"Net",
"phpunit",
"phpunit-test-case",
"Tester",
"Tests",
"tests"
],
"in": "vendor"
},
{
"name": "composer.json",
"in": "."
}
],
"output": "logchecker.phar"
}