37 lines
868 B
JSON
37 lines
868 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": {
|
|
"php": "7.4.*",
|
|
"typo3/cms-core": "^11.5",
|
|
"typo3/cms-extbase": "^11.5"
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
}
|