-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.29 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
{
"name": "simplygoodwork/craft-nag",
"description": "Email alerts in case of suspicious user logins",
"type": "craft-plugin",
"version": "2.0.0",
"license": "MIT",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"nag"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/simplygoodwork/craft-nag/issues",
"docs": "https://github.com/simplygoodwork/craft-nag/blob/main/README.md"
},
"authors": [
{
"name": "Good Work",
"homepage": "https://simplygoodwork.com/"
}
],
"require": {
"craftcms/cms": "^5.0.0",
"matomo/device-detector": "^6.0"
},
"autoload": {
"psr-4": {
"simplygoodwork\\nag\\": "src/"
}
},
"extra": {
"name": "Nag",
"handle": "nag",
"developer": "Good Work",
"developerUrl": "https://simplygoodwork.com/",
"documentationUrl": "https://github.com/simplygoodwork/nag/blob/main/README.md",
"changelogUrl": "https://raw.githubusercontent.com/simplygoodwork/nag/main/CHANGELOG.md",
"components": {
"nagService": "simplygoodwork\\nag\\services\\NagService"
},
"class": "simplygoodwork\\nag\\Nag"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}