forked from mix-php/mix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 945 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "mix/api-skeleton",
"description": "API development skeleton",
"type": "project",
"homepage": "https://openmix.org/mix-php",
"license": "Apache-2.0",
"scripts": {
"cliserver:start": "php -S localhost:8000 public/index.php",
"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/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",
"firebase/php-jwt": "^5.4"
},
"require-dev": {
"swoole/ide-helper": "^4.6"
}
}