-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
42 lines (42 loc) · 1.16 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
{
"name": "mmikkel/reasons",
"description": "Adds conditionals to field layouts.",
"type": "craft-plugin",
"version": "2.3.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"reasons"
],
"support": {
"docs": "https://github.com/mmikkel/Reasons-Craft3/blob/master/README.md",
"issues": "https://github.com/mmikkel/Reasons-Craft3/issues"
},
"license": "MIT",
"authors": [
{
"name": "Mats Mikkel Rummelhoff",
"homepage": "https://vaersaagod.no"
}
],
"require": {
"php": "^7.2.5|^8.0",
"craftcms/cms": "^3.7.0"
},
"autoload": {
"psr-4": {
"mmikkel\\reasons\\": "src/"
}
},
"extra": {
"name": "Reasons",
"handle": "reasons",
"developer": "Mats Mikkel Rummelhoff",
"developerUrl": "https://vaersaagod.no",
"documentationUrl": "https://github.com/mmikkel/Reasons-Craft3/blob/master/README.md",
"changelogUrl": "https://github.com/mmikkel/Reasons-Craft3/blob/master/CHANGELOG.md",
"class": "mmikkel\\reasons\\Reasons"
}
}