testing-talk/composer.json

38 lines
868 B
JSON
Raw Normal View History

2018-06-20 21:10:52 +02:00
{
"name": "codappix/testing-talk",
2018-06-20 21:10:52 +02:00
"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": {
"php": "7.4.*",
"typo3/cms-core": "^11.5",
"typo3/cms-extbase": "^11.5"
2018-06-20 21:10:52 +02:00
},
"extra": {
"typo3/cms": {
"web-dir": "web"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpspec/prophecy-phpunit": "^2.0"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
2018-06-20 21:10:52 +02:00
}
}