-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.17 KB
/
Copy pathcomposer.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "alocms/framework",
"description": "基于ThinkPHP二次封装的业务框架",
"type": "library",
"license": "MulanPSL-2.0",
"authors": [
{
"name": "aloneit",
"email": "alone@alonetech.com"
}
],
"autoload": {
"psr-4": {
"alocms\\": "src/library",
"alocms\\install\\": "src/install",
"alocms\\extend\\": "src/extend"
}
},
"require": {
"php": ">=7.4.0",
"topthink/framework": "6.1",
"topthink/think-orm": "^2.0",
"topthink/think-multi-app": "^1.0",
"topthink/think-helper": "^3.1",
"topthink/think-captcha": "^3.0",
"topthink/think-throttle": "^1.1",
"topthink/think-image": "^1.0",
"guzzlehttp/guzzle": "^7.2",
"php-amqplib/php-amqplib": "^3.0",
"phpoffice/phpspreadsheet": "^1.17",
"xavier/xcron-expression": "^0.11.0"
},
"require-dev": {
"symfony/var-dumper": "^4.2",
"topthink/think-trace": "^1.0"
},
"extra": {
"think": {
"services": [
"alocms\\service\\Initialize"
]
}
}
}