forked from RobErskine/Craft-User-Manual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.26 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
{
"name": "hillholliday/craft-user-manual",
"description": "Craft User Manual allows developers (or even content editors) to provide CMS documentation using Craft's built-in sections (singles, channels, or structures) to create a `User Manual` or `Help` section directly in the control panel.",
"type": "craft-plugin",
"version": "2.0.5",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"usermanual"
],
"support": {
"docs": "https://github.com/hillholliday/Craft-User-Manual/blob/master/README.md",
"issues": "https://github.com/hillholliday/Craft-User-Manual/issues"
},
"license": "MIT",
"authors": [
{
"name": "Hill Holliday",
"homepage": "https://www.hhcc.com"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"autoload": {
"psr-4": {
"hillholliday\\usermanual\\": "src/"
}
},
"extra": {
"name": "User Manual",
"handle": "usermanual",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/hillholliday/Craft-User-Manual/master/CHANGELOG.md",
"class": "hillholliday\\usermanual\\UserManual"
}
}