-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
executable file
·52 lines (52 loc) · 1.55 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
50
51
52
{
"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": "5.0.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"usermanual"
],
"support": {
"docs": "https://github.com/roberskine/Craft-User-Manual/blob/master/README.md",
"issues": "https://github.com/roberskine/Craft-User-Manual/issues"
},
"license": "MIT",
"authors": [
{
"name": "Rob Erskine",
"homepage": "https://roberskine.com"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0|^5.0.0"
},
"autoload": {
"psr-4": {
"roberskine\\usermanual\\": "src/"
}
},
"extra": {
"name": "User Manual",
"handle": "usermanual",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/roberskine/Craft-User-Manual/master/CHANGELOG.md",
"class": "roberskine\\usermanual\\UserManual"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}