-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
49 lines (49 loc) · 1.21 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
{
"name": "superbig/craft-audit",
"description": "Log adding/updating/deleting of elements",
"type": "craft-plugin",
"version": "3.0.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"audit"
],
"support": {
"docs": "https://github.com/sjelfull/craft-audit/blob/v1/README.md",
"issues": "https://github.com/sjelfull/craft-audit/issues"
},
"license": "MIT",
"authors": [
{
"name": "Superbig",
"homepage": "https://superbig.co"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0",
"donatj/phpuseragentparser": "^1.7.0",
"geoip2/geoip2": "^2.5"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"superbig\\audit\\": "src/"
}
},
"extra": {
"name": "Audit",
"handle": "audit",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/sjelfull/craft-audit/v1/CHANGELOG.md",
"class": "superbig\\audit\\Audit"
}
}