forked from matt-j-m/grav-plugin-aura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 961 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
36
37
{
"name": "matt-j-m/grav-plugin-aura",
"type": "grav-plugin",
"description": "Automatically add meta tags and structured data to your pages for visually appealing and informative search results and social media sharing.",
"keywords": ["seo", "structured data", "open graph"],
"homepage": "https://github.com/matt-j-m/grav-plugin-aura",
"license": "MIT",
"authors": [
{
"name": "Matt Mulhall",
"email": "[email protected]",
"homepage": "https://www.theskylab.net",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/matt-j-m/grav-plugin-aura/issues",
"docs": "https://github.com/matt-j-m/grav-plugin-aura/blob/master/README.md"
},
"require": {
"php": ">=7.1.3",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Grav\\Plugin\\Aura\\": "classes/"
},
"classmap": [
"aura.php"
]
},
"config": {
"platform": {
"php": "7.1.3"
}
}
}