tracking/composer.json
Daniel Siepmann 337f0b1098 Use custom fork of typo3/testing-framework for now
This includes a bug fix to allow execution of functional tests.
The fix is already open as PR in the upstream repo.
2021-09-17 09:36:59 +02:00

80 lines
2.5 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",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/DanielSiepmann/testing-framework.git"
}
],
"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.3.0 || ~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.4",
"typo3/cms-core": "^10.4 || ~11.4",
"typo3/cms-dashboard": "^10.4 || ~11.4"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^0.12.18",
"phpstan/extension-installer": "^1.0",
"jangregor/phpstan-prophecy": "^0.8.1",
"phpspec/prophecy-phpunit": "^2.0",
"typo3/testing-framework": "dev-bugfix/add-missing-composer-dependency-to-sysext-install as 6.11.x-dev",
"saschaegerer/phpstan-typo3": "^0.13.1",
"symplify/easy-coding-standard": "^9.3",
"cweagans/composer-patches": "^1.7"
},
"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"
},
"composer-exit-on-patch-failure": true,
"patches": {
},
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}