-
Notifications
You must be signed in to change notification settings - Fork 213
/
composer.json
55 lines (55 loc) · 1.29 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "mix/api-skeleton",
"description": "API development skeleton",
"type": "project",
"homepage": "https://openmix.org/mix-php",
"license": "Apache-2.0",
"scripts": {
"cliserver:start": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8000 public/index.php"
],
"swoole:start": [
"Composer\\Config::disableProcessTimeout",
"php bin/swoole.php"
],
"swooleco:start": [
"Composer\\Config::disableProcessTimeout",
"php bin/swooleco.php"
],
"swow:start": [
"Composer\\Config::disableProcessTimeout",
"php bin/swow.php"
],
"workerman:start": [
"Composer\\Config::disableProcessTimeout",
"php bin/workerman.php start"
],
"cli:clearcache": [
"Composer\\Config::disableProcessTimeout",
"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": "^3.1",
"firebase/php-jwt": "^5.4"
},
"require-dev": {
"swoole/ide-helper": "^4.6"
}
}