2020-02-07 10:27:07 +01:00
|
|
|
{
|
|
|
|
"name": "danielsiepmann/tracking",
|
|
|
|
"description": "Tracking for TYPO3",
|
|
|
|
"type": "typo3-cms-extension",
|
|
|
|
"license": "GPL-2.0-or-later",
|
2020-02-26 07:43:56 +01:00
|
|
|
"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"
|
|
|
|
},
|
2020-02-07 10:27:07 +01:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Daniel Siepmann",
|
|
|
|
"email": "coding@daniel-siepmann.de"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"DanielSiepmann\\Tracking\\": "Classes/"
|
|
|
|
}
|
|
|
|
},
|
2020-02-25 21:19:18 +01:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"DanielSiepmann\\Tracking\\Tests\\": "Tests/"
|
|
|
|
}
|
|
|
|
},
|
2020-02-07 10:27:07 +01:00
|
|
|
"require": {
|
2024-02-05 10:01:44 +01:00
|
|
|
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
|
2023-04-26 17:17:28 +02:00
|
|
|
"ext-mbstring": "*",
|
2024-02-05 10:01:44 +01:00
|
|
|
"doctrine/dbal": "^2.12 || ^3.3 || 4.0.0-RC2@rc",
|
2020-02-25 19:58:46 +01:00
|
|
|
"psr/http-message": "^1.0",
|
|
|
|
"psr/http-server-handler": "^1.0",
|
|
|
|
"psr/http-server-middleware": "^1.0",
|
2024-02-05 10:01:44 +01:00
|
|
|
"symfony/console": "^5.2 || ^6.1 || ^7.0",
|
|
|
|
"symfony/expression-language": "^5.2 || ^6.1 || ^7.0",
|
|
|
|
"typo3/cms-backend": "^12.4 || ^13.0",
|
|
|
|
"typo3/cms-core": "^12.4 || ^13.0",
|
|
|
|
"typo3/cms-dashboard": "^12.4 || ^13.0"
|
2020-04-07 15:04:20 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2023-05-11 08:48:15 +02:00
|
|
|
"codappix/typo3-php-datasets": "^1.3",
|
2023-04-26 17:17:28 +02:00
|
|
|
"cweagans/composer-patches": "^1.7",
|
2023-04-26 17:29:23 +02:00
|
|
|
"friendsofphp/php-cs-fixer": "^3.14",
|
2021-11-25 14:40:00 +01:00
|
|
|
"jangregor/phpstan-prophecy": "^1.0",
|
2020-07-30 12:22:32 +02:00
|
|
|
"phpspec/prophecy-phpunit": "^2.0",
|
2023-04-26 17:17:28 +02:00
|
|
|
"phpstan/extension-installer": "^1.1",
|
2024-02-05 10:01:44 +01:00
|
|
|
"phpstan/phpstan": "^1.10",
|
|
|
|
"phpunit/phpunit": "^10.1",
|
|
|
|
"typo3/testing-framework": "^8.0"
|
2020-02-07 10:27:07 +01:00
|
|
|
},
|
2020-04-16 11:17:02 +02:00
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true,
|
2020-04-07 15:04:20 +02:00
|
|
|
"scripts": {
|
|
|
|
"post-autoload-dump": [
|
|
|
|
"mkdir -p .Build/web/typo3conf/ext/",
|
|
|
|
"[ -L .Build/web/typo3conf/ext/tracking ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/tracking"
|
|
|
|
]
|
|
|
|
},
|
2020-02-07 10:27:07 +01:00
|
|
|
"extra": {
|
|
|
|
"typo3/cms": {
|
2022-12-07 13:37:19 +01:00
|
|
|
"app-dir": ".Build",
|
2020-02-25 19:58:46 +01:00
|
|
|
"extension-key": "tracking",
|
|
|
|
"web-dir": ".Build/web"
|
2020-02-07 10:27:07 +01:00
|
|
|
}
|
2022-01-06 08:18:15 +01:00
|
|
|
},
|
|
|
|
"config": {
|
2023-04-26 17:17:28 +02:00
|
|
|
"sort-packages": true,
|
|
|
|
"lock": false,
|
2022-01-06 08:18:15 +01:00
|
|
|
"allow-plugins": {
|
|
|
|
"typo3/class-alias-loader": true,
|
|
|
|
"typo3/cms-composer-installers": true,
|
|
|
|
"cweagans/composer-patches": true,
|
2024-02-05 10:01:44 +01:00
|
|
|
"phpstan/extension-installer": true
|
2022-01-06 08:18:15 +01:00
|
|
|
}
|
2020-02-07 10:27:07 +01:00
|
|
|
}
|
|
|
|
}
|