-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 3.36 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 3.36 KB
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
{
"name": "netresearch/nr-temporal-cache",
"type": "typo3-cms-extension",
"description": "Phase 1 Experimental Approach: Addresses TYPO3 Forge #14277 via site-wide cache synchronization. Automatic cache invalidation for time-based content. WARNING: ALL page caches expire on EVERY temporal transition (starttime/endtime). Read Performance Considerations documentation before deployment. Alternative approaches (USER_INT menus) may be more suitable for high-traffic sites.",
"keywords": [
"TYPO3",
"cache",
"temporal",
"scheduling",
"starttime",
"endtime",
"menu",
"content",
"publication",
"phase1",
"experimental"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Netresearch",
"role": "Developer",
"homepage": "https://www.netresearch.de"
}
],
"require": {
"php": "^8.1",
"typo3/cms-core": "^12.4 || ^13.0 || ^14.0",
"typo3/cms-scheduler": "^12.4 || ^13.0 || ^14.0",
"typo3/cms-reports": "^12.4 || ^13.0 || ^14.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.40",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10 || ^2.0",
"phpunit/phpcov": "^9.0 || ^11.0 || ^12.0",
"phpunit/phpunit": "^10.5 || ^11.0 || ^12.0 || ^13.0",
"saschaegerer/phpstan-typo3": "^1.0 || ^2.0 || ^3.0",
"typo3/coding-standards": "^0.8",
"typo3/testing-framework": "^8.0 || ^9.0"
},
"autoload": {
"psr-4": {
"Netresearch\\TemporalCache\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Netresearch\\TemporalCache\\Tests\\": "Tests/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "nr_temporal_cache",
"web-dir": ".Build/public"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true
},
"audit": {
"ignore": {
"PKSA-y2cr-5h3j-g3ys": "Upstream firebase/php-jwt issue via typo3/cms-core, no fix available yet"
}
}
},
"scripts": {
"ci:cgl": "php-cs-fixer fix --config=Build/.php-cs-fixer.php",
"ci:test:php:cgl": "php-cs-fixer fix --config=Build/.php-cs-fixer.php --dry-run --diff",
"ci:test:php:phpstan": "phpstan analyze --configuration=Build/phpstan.neon --memory-limit=512M",
"ci:test:php:unit": "phpunit -c Build/phpunit/UnitTests.xml",
"ci:test:php:functional": "phpunit -c Build/phpunit/FunctionalTests.xml",
"ci:test:php:coverage": "phpunit -c Build/phpunit/UnitTests.xml --coverage-html=.Build/coverage --coverage-clover=.Build/logs/clover.xml",
"ci:test:php:coverage:check": "php Build/scripts/check-coverage.php .Build/logs/clover.xml 69",
"docs:render": "docker run --rm --pull always -v \"$(pwd):/project\" ghcr.io/typo3-documentation/render-guides:latest --config=Documentation/guides.xml",
"docs:serve": "php -S localhost:8090 -t Documentation-GENERATED-temp/",
"docs:clean": "rm -rf Documentation-GENERATED-temp/"
}
}