-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.53 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.53 KB
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
56
57
58
{
"name": "mondagroup/heros-worker",
"description": "monda php framework workerman",
"require": {
"php": ">=8.0",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-redis": "*",
"ext-zlib": "*",
"firebase/php-jwt": "^6.1",
"illuminate/database": "^8.0",
"illuminate/events": "^8.0",
"illuminate/pagination": "^8.0",
"illuminate/redis": "^8.0",
"mondagroup/heros-utils": "^1.0",
"monolog/monolog": "^2.0",
"nikic/fast-route": "^1.3",
"nikic/php-parser": "^4.10.4",
"symfony/cache": "^6.0",
"symfony/console": ">=5.0",
"symfony/lock": "^6.0",
"symfony/var-dumper": "^6.0",
"workerman/redis-queue": "^1.0",
"workerman/workerman": "^4.0"
},
"require-dev": {
"laravel/pint": "^0.2.3",
"phpstan/phpstan": "^1.7",
"phpunit/phpunit": "^8.5",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Framework\\": "src/"
},
"files": [
"./src/function.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"suggest": {
"ext-event": "For better performance. "
},
"scripts": {
"pint": [
"./vendor/bin/pint --config=pint.json"
]
}
}