This repository was archived by the owner on Mar 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.36 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.36 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
59
60
61
62
63
{
"name": "duxweb/dux-php-admin",
"description": "Dux PHP Admin 后台管理系统",
"type": "project",
"license": "MIT",
"keywords": [
"dux-lite",
"php",
"framework",
"slim"
],
"authors": [
{
"name": "DuxWeb",
"email": "admin@dux.plus"
}
],
"require": {
"php": "^8.4",
"duxweb/dux-lite": "^2.4.7",
"donatj/phpuseragentparser": "^1.10",
"league/mime-type-detection": "^1.16",
"jaybizzle/crawler-detect": "^1.3",
"duxweb/dux-lite-cloud": "^0.0.7",
"intervention/image": "^3.11",
"giggsey/libphonenumber-for-php": "^9.0",
"godruoyi/php-snowflake": "^3.2",
"cebe/php-openapi": "^1.8",
"rap2hpoutre/fast-excel": "^5.6",
"staudenmeir/eloquent-json-relations": "^1.1",
"duxweb/dux-lite-runtime": "^0.1.2",
"ramsey/uuid": "^4.9.2"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"serve": "php -S localhost:8000 -t public"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"duxweb/dux-lite-cloud": true,
"duxweb/dux-lite-runtime": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://mirrors.tencent.com/composer/"
}
]
}