tracking/composer.json
Daniel Siepmann 7e0f5760db Require TYPO3 10.4 dev state
As extension uses features from upcoming TYPO3 10.4 release.
2020-04-16 11:54:42 +02:00

68 lines
2 KiB
JSON

{
"name": "danielsiepmann/tracking",
"description": "Tracking for TYPO3",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"homepage": "https://daniel-siepmann.de/projects/typo3-extension-tracking.html",
"support": {
"email": "coding@daniel-siepmann.de",
"source": "https://github.com/DanielSiepmann/tracking/",
"issues": "https://github.com/DanielSiepmann/tracking/issues"
},
"authors": [
{
"name": "Daniel Siepmann",
"email": "coding@daniel-siepmann.de"
}
],
"autoload": {
"psr-4": {
"DanielSiepmann\\Tracking\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"DanielSiepmann\\Tracking\\Tests\\": "Tests/"
}
},
"require": {
"doctrine/dbal": "^2.10",
"ext-mbstring": "*",
"php": "^7.3.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"symfony/expression-language": "^5.0",
"typo3/cms-core": "^10.4",
"symfony/console": "^5.0",
"typo3/cms-dashboard": "^10.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^0.12.18",
"phpstan/extension-installer": "^1.0",
"jangregor/phpstan-prophecy": "^0.6.2",
"maglnet/composer-require-checker": "^2.1",
"phpspec/prophecy-phpunit": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/web/typo3conf/ext/",
"[ -L .Build/web/typo3conf/ext/tracking ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/tracking"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "tracking",
"web-dir": ".Build/web"
},
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}