events/composer.json
Daniel Siepmann 328a98218b State compatibility with v10
Even if the extension is not yet ready.
This is a work in progress, to ease transition we mark it compatible,
so we can easily install, test and adapt before we release.

Relates: #8092
2021-09-07 07:49:35 +02:00

29 lines
597 B
JSON

{
"name": "wrm/events",
"type": "typo3-cms-extension",
"description": "Extension to manage Destination Data managed events",
"authors": [
{
"name": "Dirk Koritnik",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^10.4"
},
"autoload": {
"psr-4": {
"Wrm\\Events\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Wrm\\Events\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"extension-key": "events"
}
}
}