-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 848 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 848 Bytes
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
{
"name": "mix/websocket-skeleton",
"description": "WebSocket development skeleton",
"type": "project",
"homepage": "https://openmix.org/mix-php",
"license": "Apache-2.0",
"scripts": {
"swooleco:start": [
"Composer\\Config::disableProcessTimeout",
"php bin/swooleco.php"
],
"cli:clearcache": [
"Composer\\Config::disableProcessTimeout",
"php bin/cli.php clearcache"
]
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"src/functions.php"
]
},
"require": {
"mix/vega": "~3.0.0",
"mix/websocket": "~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"
},
"require-dev": {
"swoole/ide-helper": "^4.6"
}
}