forked from marionnewlevant/craft-snitch
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
44 lines (44 loc) · 1.3 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
{
"name": "marionnewlevant/snitch",
"description": "Report when two people might be editing the same element (eg entry, category, or global) or field",
"type": "craft-plugin",
"version": "3.0.4.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"snitch"
],
"support": {
"docs": "https://github.com/marionnewlevant/craft-snitch/blob/v2/README.md",
"issues": "https://github.com/marionnewlevant/craft-snitch/issues"
},
"license": "MIT",
"authors": [
{
"name": "Marion Newlevant",
"homepage": "http://marion.newlevant.com"
}
],
"require": {
"craftcms/cms": "^3.5.0"
},
"autoload": {
"psr-4": {
"marionnewlevant\\snitch\\": "src/"
}
},
"extra": {
"name": "Snitch",
"handle": "snitch",
"hasCpSettings": false,
"hasCpSection": false,
"documentationUrl": "https://github.com/marionnewlevant/craft-snitch/blob/v2/README.md",
"changelogUrl": "https://raw.githubusercontent.com/marionnewlevant/craft-snitch/v2/CHANGELOG.md",
"components": {
"collision": "marionnewlevant\\snitch\\services\\Collision"
},
"class": "marionnewlevant\\snitch\\Snitch"
}
}