tracking/composer.json

77 lines
2.4 KiB
JSON
Raw Normal View History

{
"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/"
}
},
2020-02-25 21:19:18 +01:00
"autoload-dev": {
"psr-4": {
"DanielSiepmann\\Tracking\\Tests\\": "Tests/"
}
},
"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": "*",
"doctrine/dbal": "^2.12 || ^3.3 || 4.0.0-RC2",
"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",
2024-05-02 08:20:53 +02:00
"typo3/cms-backend": "^12.4 || ^13.1",
"typo3/cms-core": "^12.4 || ^13.1",
"typo3/cms-dashboard": "^12.4 || ^13.1"
},
"require-dev": {
"codappix/typo3-php-datasets": "^1.5",
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",
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",
2024-05-02 08:20:53 +02:00
"saschaegerer/phpstan-typo3": "dev-add-typo3-13_1-support",
2024-02-05 10:01:44 +01:00
"typo3/testing-framework": "^8.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": {
"app-dir": ".Build",
"extension-key": "tracking",
"web-dir": ".Build/web"
}
},
"config": {
2023-04-26 17:17:28 +02:00
"sort-packages": true,
"lock": false,
"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
}
}
}