forked from Yoast/Yoast-SEO-for-TYPO3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
91 lines (91 loc) · 2.37 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",
"type": "typo3-cms-extension",
"license": "GPL-3.0-or-later",
"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": {
"source": "https://github.com/Yoast/Yoast-SEO-for-TYPO3",
"issues": "https://github.com/Yoast/Yoast-SEO-for-TYPO3/issues",
"docs": "https://docs.typo3.org/p/yoast-seo-for-typo3/yoast_seo/main/en-us/"
},
"require": {
"typo3/cms-core": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-backend": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-extbase": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-fluid": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-frontend": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-install": "^10.4 || ^11.5 || ^12.4",
"typo3/cms-seo": "^10.4 || ^11.5 || ^12.4",
"ext-curl": "*",
"ext-json": "*",
"php": "^7.4 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"overtrue/phplint": "^3.0 || ^4.0 || ^5.0",
"phpstan/phpstan": "^1.9",
"phpstan/extension-installer": "^1.0",
"typo3/tailor": "^1.1",
"saschaegerer/phpstan-typo3": "^1.8"
},
"suggest": {
"typo3/cms-dashboard": "Display Yoast SEO widgets within the Dashboard of TYPO3"
},
"replace": {
"typo3-ter/yoast-seo": "self.version"
},
"autoload": {
"psr-4": {
"YoastSeoForTypo3\\YoastSeo\\": "Classes/"
}
},
"extra": {
"branch-alias": {
"dev-main": "9.x-dev",
"dev-master": "9.x-dev"
},
"typo3/cms": {
"extension-key": "yoast_seo"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"test:php:lint": [
"phplint --configuration=.Build/.phplint.yml"
],
"cgl": [
"php-cs-fixer fix --config=.Build/.php-cs-fixer.php -v --dry-run --using-cache no --diff"
],
"cgl-fix": [
"php-cs-fixer fix --config=.Build/.php-cs-fixer.php -v --using-cache no"
],
"test:php:phpstan": [
"phpstan analyse"
]
}
}