-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
72 lines (72 loc) · 2.54 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "eonx-com/easy-swoole",
"description": "Ease running app with Open Swoole",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2",
"eonx-com/easy-utils": "^6.6",
"nesbot/carbon": "^3.8.4",
"openswoole/core": "^22.1",
"symfony/cache": "^7.1",
"symfony/config": "^7.1",
"symfony/contracts": "^3.5",
"symfony/dependency-injection": "^7.1",
"symfony/filesystem": "^7.1",
"symfony/framework-bundle": "^7.1",
"symfony/http-foundation": "^7.1.7",
"symfony/http-kernel": "^7.1",
"symfony/runtime": "^7.1.7",
"symfony/string": "^7.1"
},
"require-dev": {
"eonx-com/easy-bugsnag": "^6.6",
"eonx-com/easy-logging": "^6.6",
"openswoole/ide-helper": "^22.0",
"phpunit/phpunit": "^10.2",
"symfony/twig-bundle": "^7.1"
},
"autoload": {
"files": [
"src/Logging/Function/dump.php"
],
"psr-4": {
"EonX\\EasySwoole\\": "src",
"EonX\\EasySwoole\\Bundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"EonX\\EasySwoole\\Tests\\": "tests",
"EonX\\EasySwoole\\Tests\\Unit\\": "tests/Unit/src",
"EonX\\EasySwoole\\Tests\\Unit\\Bundle\\": "tests/Unit/bundle"
}
},
"suggest": {
"doctrine/orm": "To use this package with Doctrine",
"doctrine/persistence": "To use this package with Doctrine",
"easycorp/easyadmin-bundle": "To use this package with EasyAdmin",
"eonx-com/easy-batch": "To use this package with EasyBatch",
"eonx-com/easy-bugsnag": "To use this package with EasyBugsnag",
"eonx-com/easy-doctrine": "To use this package with EasyDoctrine",
"eonx-com/easy-error-handler": "To use this package with EasyErrorHandler",
"eonx-com/easy-logging": "To use this package with EasyLogging",
"monolog/monolog": "To improve output of OutputHelper",
"nesbot/carbon": "To use this package with EasySchedule",
"psr/log": "To enable access logs",
"symfony/console": "To use this package with EasySchedule",
"symfony/process": "To enable hot reload",
"symfony/twig-bundle": "To use this package with Twig",
"symfony/var-dumper": "To improve output of VarDumpHelper"
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
},
"extra": {
"branch-alias": {
"dev-master": "6.6-dev"
}
}
}