forked from bleutzinn/grav-plugin-add-page-by-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 981 Bytes
/
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
{
"name": "bleutzinn/grav-plugin-add-page-by-form",
"type": "grav-plugin",
"description": "Adds a page by means of a form",
"keywords": ["grav", "plugin", "page", "form", "frontmatter"],
"homepage": "https://github.com/bleutzinn/grav-plugin-add-page-by-form",
"license": "MIT",
"authors": [
{
"name": "Ron Wardenier",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/bleutzinn/grav-plugin-add-page-by-form/issues",
"docs": "https://github.com/bleutzinn/grav-plugin-add-page-by-form/blob/master/README.md"
},
"require": {
"php": ">=7.1.3"
},
"autoload": {
"psr-4": {
"Grav\\Plugin\\AddPageByFormPlugin\\": "classes/"
},
"classmap": [
"add-page-by-form.php"
]
},
"config": {
"platform": {
"php": "7.1.3"
}
}
}