-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathcomposer.json
91 lines (91 loc) · 2.54 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "yoast-seo-for-typo3/yoast_seo",
"description": "Yoast SEO for TYPO3",
"license": "GPL-3.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"Yoast",
"SEO",
"MaxServ"
],
"authors": [
{
"name": "Team Yoast",
"email": "[email protected]",
"homepage": "https://yoast.com"
},
{
"name": "Team MaxServ",
"email": "[email protected]",
"homepage": "https://maxserv.com"
}
],
"homepage": "https://yoast.com",
"support": {
"issues": "https://github.com/Yoast/Yoast-SEO-for-TYPO3/issues",
"source": "https://github.com/Yoast/Yoast-SEO-for-TYPO3",
"docs": "https://docs.typo3.org/p/yoast-seo-for-typo3/yoast_seo/main/en-us/"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"typo3/cms-backend": "^11.5.25 || ^12.4.15 || ^13.4",
"typo3/cms-core": "^11.5.25 || ^12.4.15 || ^13.4",
"typo3/cms-extbase": "^11.5.25 || ^12.4.15 || ^13.4",
"typo3/cms-fluid": "^11.5.25 || ^12.4.15 || ^13.4",
"typo3/cms-frontend": "^11.5.25 || ^12.4.15 || ^13.4",
"typo3/cms-install": "^11.5.25 || ^12.4.15 || ^13.4",
"typo3/cms-seo": "^11.5.25 || ^12.4.15 || ^13.4"
},
"require-dev": {
"composer/class-map-generator": "^1.3.4",
"dg/bypass-finals": "^1.8",
"ergebnis/composer-normalize": "^2.43",
"friendsofphp/php-cs-fixer": "^3.60.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^10.1",
"saschaegerer/phpstan-typo3": "^1.10",
"typo3/coding-standards": "^0.7.1 || ^0.8.0",
"typo3/testing-framework": "^7.1.0 || ^8.2.0"
},
"replace": {
"typo3-ter/yoast-seo": "self.version"
},
"suggest": {
"typo3/cms-dashboard": "Display Yoast SEO widgets within the Dashboard of TYPO3"
},
"autoload": {
"psr-4": {
"YoastSeoForTypo3\\YoastSeo\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"YoastSeoForTypo3\\YoastSeo\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "yoast_seo",
"web-dir": ".Build/public"
}
}
}