events/Tests/Functional/Frontend/Fixtures/Extensions/example/composer.json
Daniel Siepmann 0fc2668d17
Improve TYPO3 cache handling (#14)
There might be access to TSFE get_cache_timeout() prior rendering
events.
TYPO3 has a cache for timeout and won't re calculate again.
We therefore need to clear the cache if timeout would change.

That will lead to inconsistent cache information throughout a single
request. But the final cache timeout of the page will be correct. Other
parts might be longer, which probably is fine until they relate to the
events.

Relates: #10500
2023-05-16 10:15:05 +02:00

18 lines
352 B
JSON

{
"name": "wrm/events-example",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"require": {
"wrm/events": "*"
},
"autoload": {
"psr-4": {
"Wrm\\EventsExample\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "example"
}
}
}