serverctl/composer.json

30 lines
618 B
JSON
Raw Permalink Normal View History

2022-09-27 10:29:56 +00:00
{
"name": "noccylabs/serverctl",
"description": "Start and stop services for development",
"type": "application",
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"NoccyLabs\\Serverctl\\": "src/"
}
},
"authors": [
{
"name": "Christopher Vagnetoft",
"email": "cvagnetoft@gmail.com"
}
],
"require": {
"symfony/console": "^6.1",
"noccylabs/spinner": "^0.1.0"
},
"bin": [
2022-09-27 23:12:53 +00:00
"bin/server"
2022-09-27 10:29:56 +00:00
],
"extra": {
"phar": {
2022-09-27 23:12:53 +00:00
"output": "server.phar"
2022-09-27 10:29:56 +00:00
}
}
}