-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
135 lines (135 loc) · 4.06 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "eliashaeussler/typo3-warming",
"description": "Extension for TYPO3 CMS that warms up Frontend caches based on an XML sitemap with multi-language support",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Elias Häußler",
"email": "[email protected]",
"homepage": "https://haeussler.dev",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/eliashaeussler/typo3-warming/issues",
"chat": "https://typo3.slack.com/archives/C0400CSGWAY",
"source": "https://github.com/eliashaeussler/typo3-warming.git",
"docs": "https://docs.typo3.org/p/eliashaeussler/typo3-warming/main/en-us/",
"rss": "https://github.com/eliashaeussler/typo3-warming/releases.atom"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-json": "*",
"cuyz/valinor": "^1.3",
"eliashaeussler/cache-warmup": "^3.2",
"eliashaeussler/sse": "^1.0.1",
"eliashaeussler/typo3-sitemap-locator": "^0.1.0",
"guzzlehttp/guzzle": "^7.5",
"guzzlehttp/promises": "^1.4 || ^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/options-resolver": "^6.4 || ^7.0",
"typo3/cms-backend": "~12.4.8 || ~13.4.0",
"typo3/cms-core": "~12.4.8 || ~13.4.0",
"typo3/cms-extbase": "~12.4.8 || ~13.4.0",
"typo3/cms-fluid": "~12.4.8 || ~13.4.0",
"typo3/cms-frontend": "~12.4.8 || ~13.4.0"
},
"require-dev": {
"codeception/module-asserts": "^3.0",
"codeception/module-cli": "^2.0",
"codeception/module-db": "^3.1",
"codeception/module-webdriver": "^4.0",
"eliashaeussler/transient-logger": "^1.0",
"eliashaeussler/typo3-codeception-helper": "^1.0",
"eliashaeussler/version-bumper": "^1.2",
"phpunit/phpcov": "^9.0 || ^10.0",
"symfony/config": "^6.4 || ^7.0",
"typo3/cms-install": "~12.4.8 || ~13.4.0",
"typo3/cms-seo": "~12.4.8 || ~13.4.0",
"typo3/cms-tstemplate": "~12.4.8 || ~13.4.0",
"typo3/testing-framework": "^8.2.3 || ^9.0.1"
},
"autoload": {
"psr-4": {
"EliasHaeussler\\Typo3Warming\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"EliasHaeussler\\Typo3Warming\\Tests\\": "Tests/"
},
"classmap": [
"Tests/Build/Stubs/TYPO3/PharStreamWrapper"
]
},
"config": {
"allow-plugins": {
"codeception/c3": true,
"eliashaeussler/version-bumper": true,
"php-http/discovery": false,
"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": "warming",
"web-dir": ".Build/web"
}
},
"scripts": {
"post-install-cmd": [
"@composer -d Tests/CGL install"
],
"post-autoload-dump": [
"@environment:prepare"
],
"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",
"environment:prepare": [
"rm -rf config",
"cp -r Tests/Build/Configuration config",
"codecept build"
],
"test": [
"@test:acceptance",
"@test:functional",
"@test:unit"
],
"test:acceptance": [
".ddev/commands/web/init-typo3",
"codecept run --steps"
],
"test:coverage": [
"@test:coverage:acceptance",
"@test:coverage:functional",
"@test:coverage:unit",
"@test:coverage:merge"
],
"test:coverage:acceptance": [
"@test:acceptance --coverage --coverage-html",
"mkdir -p .Build/coverage/php",
"cp .Build/log/acceptance-reports/coverage.serialized .Build/coverage/php/acceptance.cov"
],
"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"
}
}