typo3-php-datasets/composer.json
Daniel Siepmann 5887cb87fe
First basic implementation (#1)
Allows to import a PHP data set within TYPO3 testing framework.
Allows to assert a PHP data set within TYPO3 testing framework.
2023-04-11 15:12:51 +02:00

47 lines
1.2 KiB
JSON

{
"name": "codappix/typo3-php-datasets",
"description": "Enables usage of PHP data sets within TYPO3.",
"type": "library",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"Codappix\\Typo3PhpDatasets\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Codappix\\Typo3PhpDatasets\\Tests\\": "Tests/"
}
},
"authors": [
{
"name": "Daniel Siepmann",
"email": "coding@daniel-siepmann.de"
}
],
"require": {
"php": "^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2",
"doctrine/dbal": "^2.13",
"typo3/cms-core": "^10.4 || ^11.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.6",
"typo3/testing-framework": "^6.16"
},
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"web-dir": ".Build/web"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}