-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.48 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
{
"name": "pdir/contao-seo-plugin",
"description": "SEO plugin for Contao CMS",
"keywords":["seo", "indexnow","marketing","ranking","pagespeed", "contao", "search engine optimization", "onpage", "content", "tips", "alias", "404", "redirects", "witerleitung"],
"license":"LGPL-3.0-or-later",
"type": "contao-bundle",
"authors": [
{
"name": "Contao SEO Plugin",
"homepage": "https://pdir.de/contao-seo-plugin",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://pdir.de",
"support": {
"issues": "https://github.com/pdir/contao-seo-plugin/issues",
"source": "https://github.com/pdir/contao-seo-plugin"
},
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13 || ^5.0",
"pdir/contao-webtools": "^1.5",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
"terminal42/contao-url-rewrite": "^1.7",
"composer-runtime-api": "^2.1"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.5",
"contao/easy-coding-standard": "^3.0",
"contao/manager-plugin": "^2.0",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^6.1"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Pdir\\ContaoSeoPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pdir\\ContaoSeoPlugin\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"contao-components/installer": true,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "tools"
},
"contao-manager-plugin": "Pdir\\ContaoSeoPlugin\\ContaoManager\\Plugin"
},
"scripts": {
"all": [
"@unit-tests",
"@ecs",
"@phpstan"
],
"ecs": "@php tools/ecs/vendor/bin/ecs check src tests --config ecs.php --fix --ansi",
"phpstan": "@php tools/phpstan/vendor/bin/phpstan analyze --ansi",
"unit-tests": "@php vendor/bin/phpunit --colors=always"
}
}