composer.json
989 字节
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
{
"name": "globalso/email",
"type": "project",
"description": "邮件管理",
"license": "MIT",
"require": {
"php": "^8.0.2",
"ext-iconv": "*",
"ext-imap": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-redis": "*",
"phpmailer/phpmailer": "^6.7",
"swlib/saber": "^1.0"
},
"autoload": {
"psr-4": {
"Model\\": "model/",
"Controller\\": "controller/",
"Lib\\": "lib/",
"Event\\": "event/",
"Service\\": "service/"
},
"files": [
"config.php",
"function.php"
]
},
"scripts": {
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}