mix/examples/web-skeleton/composer.json
2022-04-19 11:37:22 +08:00

38 lines
932 B
JSON

{
"name": "mix/web-skeleton",
"description": "Web development skeleton",
"type": "project",
"homepage": "https://openmix.org/mix-php",
"license": "Apache-2.0",
"scripts": {
"cliserver:start": "php -S localhost:8000 -t public",
"swoole:start": "php bin/swoole.php",
"swooleco:start": "php bin/swooleco.php",
"swow:start": "php bin/swow.php",
"workerman:start": "php bin/workerman.php start",
"cli:clearcache": "php bin/cli.php clearcache"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"src/functions.php"
]
},
"require": {
"workerman/workerman": "^4.0",
"mix/init": "~3.0.0",
"mix/vega": "~3.0.0",
"mix/cli": "~3.0.0",
"mix/database": "~3.0.0",
"mix/redis": "~3.0.0",
"vlucas/phpdotenv": "^5.3",
"hassankhan/config": "^3.0",
"monolog/monolog": "^2.3"
},
"require-dev": {
"swoole/ide-helper": "^4.6"
}
}