-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
41 lines (41 loc) · 958 Bytes
/
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
{
"name": "yunwuxin/think-auth",
"license": "Apache-2.0",
"type": "think-extend",
"description": "The Auth Library For ThinkPHP5",
"authors": [
{
"name": "yunwuxin",
"email": "448901948@qq.com"
}
],
"require": {
"topthink/framework": "^6.0 || ^8.0"
},
"require-dev": {
"yunwuxin/think-notification": "^3.0",
"yunwuxin/think-mail": "^3.0"
},
"suggest": {
"yunwuxin/think-notification": "Required to send notification.",
"yunwuxin/think-mail": "Required to send email."
},
"autoload": {
"psr-4": {
"yunwuxin\\": "src"
},
"files": [
"src/helper.php"
]
},
"extra": {
"think": {
"services": [
"yunwuxin\\auth\\Service"
],
"config": {
"auth": "src/config.php"
}
}
}
}