-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.22 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
{
"name": "imi/yoast-seo-for-contao",
"description": "Extends the Contao backend with the YoastSEO.js plugin",
"keywords": [
"contao",
"bundle",
"tag 3",
"tag 4"
],
"type": "contao-bundle",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "iMi digital GmbH",
"email": "[email protected]",
"homepage": "http://www.imi-digital.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/iMi-digital/yoast-seo-for-contao/issues",
"source": "https://github.com/iMi-digital/yoast-seo-for-contao"
},
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13 || ^5.0"
},
"require-dev": {
"contao/manager-plugin": "^2.12"
},
"autoload": {
"psr-4": {
"Imi\\YoastSeoForContao\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"contao/manager-plugin": false,
"contao-community-alliance/composer-plugin": true
}
},
"extra": {
"contao-manager-plugin": "Imi\\YoastSeoForContao\\ContaoManager\\Plugin"
}
}