-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
77 lines (77 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "windwalker/core",
"description": "Next generation PHP framework.",
"homepage": "https://github.com/windwalker-io/core",
"license": "MIT",
"minimum-stability": "beta",
"require": {
"php": ">=8.2",
"ext-json": "*",
"fakerphp/faker": "^1.0",
"fig/link-util": "^1.2",
"filp/whoops": "^2.1",
"jenssegers/agent": "^2.6",
"monolog/monolog": "^2.0||^3.0",
"nikic/fast-route": "^1.0",
"nikic/php-parser": "^4.10||^5.0",
"stecman/symfony-console-completion": "^0.11.0||^0.12.0",
"symfony/console": "^5.2||^6.0||^7.0",
"symfony/dotenv": "^5.2||^6.0||^7.0",
"symfony/event-dispatcher-contracts": "^2.0||^3.0",
"symfony/options-resolver": "^5.0||^6.0||^7.0",
"symfony/polyfill-php83": "^1.0",
"symfony/process": "^5.2||^6.0||^7.0",
"symfony/stopwatch": "^5.0||^6.0||^7.0",
"webmozart/glob": "^4.0",
"windwalker/attributes": "^4.0",
"windwalker/crypt": "^4.0",
"windwalker/data": "^4.0",
"windwalker/di": "^4.0",
"windwalker/environment": "^4.0",
"windwalker/event": "^4.0",
"windwalker/filesystem": "^4.0",
"windwalker/filter": "^4.0",
"windwalker/http": "^4.0",
"windwalker/test": "^4.0",
"composer/semver": "^3.4"
},
"require-dev": {
"nunomaduro/collision": "^7.8"
},
"suggest": {
"dragonmantank/cron-expression": "Install ^3.1 to support schedule runner.",
"symfony/mailer": "Install ^5.2||^6.0||^7.0 to send mail.",
"tijsverkoyen/css-to-inline-styles": "Install ~2.0 if you want to use mail css inliner."
},
"archive": {
"exclude": [
".github",
"assets",
"test"
]
},
"autoload" : {
"psr-4" : {
"Windwalker\\" : "src/",
"Windwalker\\Core\\Test\\": "test/"
},
"files": [
"src/bootstrap.php"
]
},
"config": {
"platform": {
"php": "8.2.0"
}
},
"extra": {
"windwalker": {
"packages": [
"Windwalker\\Debugger\\DebuggerPackage"
]
},
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}