-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
87 lines (87 loc) · 2.44 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
{
"name": "eliashaeussler/typo3-sitemap-robots",
"description": "Extension for TYPO3 CMS to enhance robots.txt with sitemap configurations",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Elias Häußler",
"email": "elias@haeussler.dev",
"homepage": "https://haeussler.dev",
"role": "Maintainer"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"eliashaeussler/typo3-sitemap-locator": "^0.1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"typo3/cms-core": "~11.5.19 || ~12.4.0 || ~13.4.0"
},
"require-dev": {
"eliashaeussler/transient-logger": "^1.0",
"eliashaeussler/version-bumper": "^2.1.1",
"phpunit/phpcov": "^9.0 || ^10.0",
"phpunit/phpunit": "^10.1 || ^11.0",
"typo3/cms-seo": "~11.5.19 || ~12.4.0 || ~13.4.0",
"typo3/testing-framework": "^7.0.2 || ^8.2.3 || ^9.0.1"
},
"autoload": {
"psr-4": {
"EliasHaeussler\\Typo3SitemapRobots\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"EliasHaeussler\\Typo3SitemapRobots\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"eliashaeussler/version-bumper": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "sitemap_robots",
"web-dir": ".Build/web"
}
},
"scripts": {
"post-install-cmd": [
"@composer -d Tests/CGL install"
],
"cgl": "@composer -d Tests/CGL --",
"docs": [
"@docs:cleanup",
"@docs:build",
"@docs:open"
],
"docs:build": "docker compose run --rm docs",
"docs:cleanup": "rm -rf .Build/docs",
"docs:open": "open .Build/docs/Index.html",
"test": [
"@test:functional",
"@test:unit"
],
"test:coverage": [
"@test:coverage:functional",
"@test:coverage:unit",
"@test:coverage:merge"
],
"test:coverage:functional": "phpunit -c phpunit.functional.xml",
"test:coverage:merge": "phpcov merge --html .Build/coverage/html/_merged --clover .Build/coverage/clover.xml --text php://stdout .Build/coverage/php",
"test:coverage:unit": "phpunit -c phpunit.unit.xml",
"test:functional": "@test:coverage:functional --no-coverage",
"test:unit": "@test:coverage:unit --no-coverage"
}
}