-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.34 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
{
"name": "vaersaagod/instructions",
"description": "Adds an \"Instructions\" field type that can be used to render field instructions as native UI elements inside Matrix field layouts.",
"type": "craft-plugin",
"version": "1.2.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"instructions"
],
"support": {
"docs": "https://github.com/vaersaagod/instructions/blob/master/README.md",
"issues": "https://github.com/vaersaagod/instructions/issues"
},
"license": "MIT",
"authors": [
{
"name": "Værsågod AS",
"homepage": "https://vaersaagod.no"
}
],
"require": {
"craftcms/cms": "^3.5.5|^4.0.0-beta.4",
"php": "^7.2.5|^8.0"
},
"autoload": {
"psr-4": {
"vaersaagod\\instructions\\": "src/"
}
},
"extra": {
"name": "Instructions",
"handle": "instructions",
"schemaVersion": "1.0.0",
"developer": "Værsågod AS",
"developerUrl": "https://vaersaagod.no",
"documentationUrl": "https://github.com/vaersaagod/instructions/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/vaersaagod/instructions/master/CHANGELOG.md",
"class": "vaersaagod\\instructions\\Instructions"
}
}