Phar build process
This commit is contained in:
parent
7289a45c39
commit
7789388cf2
6 changed files with 3526 additions and 2 deletions
6
box.json.dist
Normal file
6
box.json.dist
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"output" : "build/pfatt.phar",
|
||||||
|
"files": [
|
||||||
|
"bin/pfatt"
|
||||||
|
]
|
||||||
|
}
|
2
build/.gitignore
vendored
Normal file
2
build/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
|
@ -15,15 +15,19 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": "~7.4",
|
"php": ">=7.4",
|
||||||
"psr/log": "^1.1",
|
"psr/log": "^1.1",
|
||||||
"symfony/console": "^5.4",
|
"symfony/console": "^5.4",
|
||||||
"symfony/process": "^5.4"
|
"symfony/process": "^5.4"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
|
"bamarni/composer-bin-plugin": "^1.5",
|
||||||
"phpstan/phpstan": "^1.4",
|
"phpstan/phpstan": "^1.4",
|
||||||
"vimeo/psalm": "^4.22"
|
"vimeo/psalm": "^4.22"
|
||||||
},
|
},
|
||||||
|
"bin": [
|
||||||
|
"bin/pfatt"
|
||||||
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"psalm": "psalm",
|
"psalm": "psalm",
|
||||||
"phpstan": "phpstan",
|
"phpstan": "phpstan",
|
||||||
|
@ -33,6 +37,12 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"sort-packages": true
|
"sort-packages": true,
|
||||||
|
"platform": {
|
||||||
|
"php": "7.4.1"
|
||||||
|
},
|
||||||
|
"allow-plugins": {
|
||||||
|
"bamarni/composer-bin-plugin": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
1
vendor-bin/box/.gitignore
vendored
Normal file
1
vendor-bin/box/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/vendor/
|
5
vendor-bin/box/composer.json
Normal file
5
vendor-bin/box/composer.json
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"require-dev": {
|
||||||
|
"humbug/box": "^3.16"
|
||||||
|
}
|
||||||
|
}
|
3500
vendor-bin/box/composer.lock
generated
Normal file
3500
vendor-bin/box/composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue