mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-14 18:46:10 +01:00
Daniel Siepmann
165b110e01
That way the framework can add extra logic like cleanup. We don't have to worry about such things.
70 lines
2.2 KiB
JSON
70 lines
2.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.12",
|
|
"ext-mbstring": "*",
|
|
"php": "~7.4.0 || ~8.0.0",
|
|
"psr/http-message": "^1.0",
|
|
"psr/http-server-handler": "^1.0",
|
|
"psr/http-server-middleware": "^1.0",
|
|
"symfony/console": "^5.2",
|
|
"symfony/expression-language": "^5.2",
|
|
"typo3/cms-backend": "^10.4 || ~11.2",
|
|
"typo3/cms-core": "^10.4 || ~11.2",
|
|
"typo3/cms-dashboard": "^10.4 || ~11.2"
|
|
},
|
|
"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.8.1",
|
|
"maglnet/composer-require-checker": "^3.2",
|
|
"phpspec/prophecy-phpunit": "^2.0",
|
|
"typo3/testing-framework": "^6.8.2",
|
|
"saschaegerer/phpstan-typo3": "^0.13.1"
|
|
},
|
|
"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-main": "1.0.x-dev"
|
|
}
|
|
}
|
|
}
|