-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
92 lines (92 loc) · 2.48 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "next/next",
"license": "Apache-2.0",
"description": "一款支持swoole, workerman, FPM环境的框架的组件化的轻量`PHP`框架。",
"homepage": "https://github.com/next-laboratory/next",
"keywords": [
"nextphp",
"flexible",
"php framework"
],
"autoload": {
"psr-4": {
"Next\\Aop\\": "src/aop/src",
"Next\\Cache\\": "src/cache/src",
"Next\\Config\\": "src/config/src",
"Next\\Database\\": "src/database/src",
"Next\\Di\\": "src/di/src",
"Next\\Event\\": "src/event/src",
"Next\\Foundation\\": "src/foundation/src",
"Next\\Http\\Message\\": "src/http-message/src",
"Next\\Http\\Server\\": "src/http-server/src",
"Next\\Routing\\": "src/routing/src",
"Next\\Session\\": "src/session/src",
"Next\\Utils\\": "src/utils/src",
"Next\\VarDumper\\": "src/var-dumper/src"
},
"files": [
"src/di/src/helpers.php",
"src/utils/src/helpers.php",
"src/var-dumper/src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Next\\Event\\Tests\\": "src/event/tests/"
}
},
"authors": [
{
"name": "chengyao",
"email": "chengyao320@outlook.com"
}
],
"require": {
"php": "^8.2",
"psr/container": "^2.0",
"psr/simple-cache": "^1.0",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^2.0",
"psr/http-server-middleware": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/log": "^3.0",
"symfony/var-dumper": "^7.0",
"voku/portable-ascii": "^2.0",
"workerman/workerman": "^4.1",
"hyperf/exception-handler": "^3.1",
"league/commonmark": "^2.4",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"phpstan/phpstan": "*",
"doctrine/inflector": "*",
"pestphp/pest": "^2.34"
},
"replace": {
"next/aop": "*",
"next/cache": "*",
"next/config": "*",
"next/database": "*",
"next/di": "*",
"next/event": "*",
"next/http-message": "*",
"next/http-server": "*",
"next/foundation": "*",
"next/routing": "*",
"next/session": "*",
"next/utils": "*",
"next/var-dumper": "*"
},
"scripts": {
"test": "@php ./vendor/bin/phpunit -c phpunit.xml --colors=always",
"cs-fix": "@php ./vendor/bin/php-cs-fixer fix $1",
"analyse": "@php ./vendor/bin/phpstan analyse --memory-limit 300M -l 0 -c phpstan.neon"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}