quick-shell/composer.json
2022-05-28 07:25:25 +08:00

28 lines
709 B
JSON

{
"name": "crazywhalecc/quick-shell",
"description": "Run Shell Scripts as Fast as Possible",
"minimum-stability": "stable",
"license": "Apache-2.0",
"type": "project",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"zhamao/framework": "^2.4",
"ext-json": "*"
},
"require-dev": {
"swoole/ide-helper": "@dev"
},
"scripts": {
"post-create-project-cmd": "vendor/bin/start init",
"post-update-cmd": "vendor/bin/start check:config"
},
"autoload": {
"psr-4": {
"QuickShell\\": "src/QuickShell"
},
"files": [
"src/QuickShell/global_function.php"
]
}
}