testing-talk/composer.json
Daniel Siepmann d933b207fa
Update Version constraints
Also update code base to stay compatible.
2020-08-25 12:17:46 +02:00

31 lines
688 B
JSON

{
"name": "codappix/testing-talk",
"description": "Example Extension to show testing",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Daniel Siepmann",
"email": "coding@daniel-siepmann.de"
}
],
"autoload": {
"psr-4": {
"Codappix\\TestingTalk\\": "Classes/"
}
},
"require": {
"typo3/cms-core": "^10.4",
"typo3/cms-extbase": "^10.4"
},
"extra": {
"typo3/cms": {
"web-dir": "web"
}
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"phpspec/prophecy-phpunit": "^2.0"
}
}