-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
45 lines (45 loc) · 1.04 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
{
"name": "yoast/yoast-seo-for-neos",
"type": "neos-plugin",
"description": "Yoast SEO for Neos CMS",
"license": "GPL-3.0-or-later",
"keywords": [
"Neos CMS",
"Yoast",
"SEO"
],
"authors": [
{
"name": "Team Yoast",
"email": "[email protected]",
"homepage": "https://yoast.com"
},
{
"name": "Sebastian Helzle",
"email": "[email protected]",
"homepage": "https://www.helzle.it",
"role": "Developer"
}
],
"homepage": "https://yoast.com",
"require": {
"php": ">=7.4",
"neos/neos": "^7.3 || ^8.3",
"neos/neos-ui": "^7.3 || ^8.3",
"neos/seo": "~3.0",
"ext-json": "*"
},
"replace": {
"shel/neos-yoast-seo": "self.version"
},
"autoload": {
"psr-4": {
"Yoast\\YoastSeoForNeos\\": "Classes"
}
},
"extra": {
"neos": {
"package-key": "Yoast.YoastSeoForNeos"
}
}
}