-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·89 lines (89 loc) · 2.38 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
{
"name": "duxweb/dux-lite",
"type": "library",
"description": "The lightweight framework based on slim php",
"keywords": [
"PHP framework",
"PHP",
"slim",
"duxphp"
],
"homepage": "https://github.com/duxphp",
"license": "MIT",
"support": {
"issues": "https://github.com/duxweb/dux-lite/issues",
"source": "https://github.com/duxweb/dux-lite"
},
"authors": [
{
"name": "duxphp",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-zip": "*",
"slim/slim": "^4.11",
"slim/psr7": "^1.6",
"monolog/monolog": "^3.2",
"php-di/php-di": "^6.4.0",
"hassankhan/config": "^3.0",
"symfony/yaml": "^6.2",
"phpfastcache/phpfastcache": "^9.1",
"nette/utils": "^3.2",
"enqueue/redis": "^0.10.19",
"symfony/console": "^6.2",
"league/flysystem": "^3.11",
"overtrue/flysystem-qiniu": "^3.2",
"overtrue/flysystem-cos": "^5.1",
"iidestiny/flysystem-oss": "^4",
"illuminate/database": "^10.0",
"latte/latte": "^3.0",
"nette/php-generator": "^4.0",
"doctrine/dbal": "^3.5",
"illuminate/pagination": "^10.0",
"vlucas/valitron": "^1.4",
"bluem/tree": "^3.2",
"symfony/var-dumper": "^6.2",
"donatj/phpuseragentparser": "^1.7",
"nette/finder": "^2.6",
"nikic/php-parser": "^4.15",
"enqueue/enqueue": "^0.10.16",
"phpoffice/phpspreadsheet": "^1.26",
"godruoyi/php-snowflake": "^2.2",
"symfony/event-dispatcher": "^6.2",
"kalnoy/nestedset": "^6.0",
"symfony/process": "^6.2",
"itsgoingd/clockwork": "^5.1",
"intervention/image": "^3.5.0",
"vlucas/phpdotenv": "^5.5",
"symfony/translation": "^6.3",
"symfony/messenger": "^6.3",
"jaybizzle/crawler-detect": "^1.2",
"xantios/mimey": "^2.2",
"maennchen/zipstream-php": "^3.1",
"peppeocchi/php-cron-scheduler": "^4.0",
"voku/simple_html_dom": "^4.8",
"stevebauman/hypertext": "^1.0",
"symfony/lock": "^6.3",
"zoujingli/ip2region": "^2.0",
"ezyang/htmlpurifier": "^4.17",
"predis/predis": "^2.2",
"enqueue/amqp-lib": "^0.10.19",
"jimtools/jwt-auth": "^1.0"
},
"require-dev": {
"composer/composer": "^2.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Dux\\": "src/",
"Dux\\Tests\\": "tests"
}
}
}