calendar/composer.json
Daniel Siepmann 6fff1efe49
Replace phpcs with ecs
This combines phpcs and php-cs-fixer and provides handy configuration.
2021-02-23 11:41:18 +01:00

45 lines
1.1 KiB
JSON

{
"name": "werkraummedia/calendar",
"description": "API for extensions to create calendar",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Daniel Siepmann",
"email": "coding@daniel-siepmann.de"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.3.0 || ^7.4.0",
"typo3/cms-core": "^10.4",
"typo3/cms-extbase": "^10.4"
},
"autoload": {
"psr-4": {
"WerkraumMedia\\Calendar\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"WerkraumMedia\\Calendar\\Tests\\": "Tests/"
}
},
"require-dev": {
"jangregor/phpstan-prophecy": "^0.6.2",
"maglnet/composer-require-checker": "^2.1",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5",
"symplify/easy-coding-standard": "^9.2"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "calendar",
"web-dir": ".Build/web"
}
}
}