php-pharlite/composer.json

29 lines
553 B
JSON
Raw Permalink Normal View History

2018-04-05 23:22:42 +00:00
{
2018-04-05 23:27:10 +00:00
"name": "noccylabs/pharlite",
"description": "Generate phars from composer projects",
"type": "application",
"license": "GPL-3.0",
"authors": [
{
"name": "Christopher Vagnetoft",
"email": "cvagnetoft@gmail.com"
}
],
"autoload": {
"psr-4": {
"PharLite\\": "src/"
}
},
"require": {
"symfony/finder": "^4.0"
},
"bin": [
"bin/pharlite"
],
"extra": {
"phar": {
"output": "pharlite"
}
}
2018-04-05 23:22:42 +00:00
}