mirror of
https://github.com/werkraum-media/watchlist.git
synced 2024-11-21 23:56:09 +01:00
Daniel Siepmann
6d3b93ddb7
WIP: * Migrate CSV to PHP in order to have conditions to load columns based on current TYPO3 version. * Pass tests * Migrate controller setArgument() to keep working version for v11.
84 lines
2.9 KiB
JSON
84 lines
2.9 KiB
JSON
{
|
|
"name": "werkraummedia/watchlist",
|
|
"description": "Add a watchlist to frontend of TYPO3",
|
|
"type": "typo3-cms-extension",
|
|
"license": "GPL-2.0-or-later",
|
|
"homepage": "https://github.com/werkraum-media/watchlist",
|
|
"support": {
|
|
"docs": "https://docs.typo3.org/p/werkraummedia/watchlist/master/en-us/",
|
|
"email": "coding@daniel-siepmann.de",
|
|
"issues": "https://github.com/werkraum-media/watchlist/issues",
|
|
"source": "https://github.com/werkraum-media/watchlist"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Daniel Siepmann",
|
|
"email": "coding@daniel-siepmann.de",
|
|
"homepage": "https://daniel-siepmann.de/",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"WerkraumMedia\\Watchlist\\": "Classes/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"WerkraumMedia\\Watchlist\\Tests\\": "Tests/",
|
|
"WerkraumMedia\\WatchlistExample\\": "Tests/Fixtures/watchlist_example/Classes/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
|
|
"typo3/cms-backend": "^11.5 || ^12.4",
|
|
"typo3/cms-core": "^11.5 || ^12.4",
|
|
"typo3/cms-extbase": "^11.5 || ^12.4",
|
|
"typo3/cms-fluid-styled-content": "^11.5 || ^12.4",
|
|
"typo3/cms-form": "^11.5 || ^12.4",
|
|
"typo3/cms-frontend": "^11.5 || ^12.4"
|
|
},
|
|
"require-dev": {
|
|
"codeception/codeception": "^5.0",
|
|
"codeception/module-webdriver": "^3.2",
|
|
"cweagans/composer-patches": "^1.7",
|
|
"friendsofphp/php-cs-fixer": "^3.11",
|
|
"phpstan/extension-installer": "^1.1",
|
|
"phpstan/phpstan": "^1.10",
|
|
"phpstan/phpstan-phpunit": "^1.0",
|
|
"saschaegerer/phpstan-typo3": "^1.8",
|
|
"typo3/testing-framework": "^7.0 || ^8.0"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"lock": false,
|
|
"config": {
|
|
"sort-packages": true,
|
|
"lock": false,
|
|
"allow-plugins": {
|
|
"typo3/cms-composer-installers": true,
|
|
"typo3/class-alias-loader": true,
|
|
"ocramius/package-versions": true,
|
|
"phpstan/extension-installer": true,
|
|
"cweagans/composer-patches": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"typo3/cms": {
|
|
"app-dir": ".Build",
|
|
"extension-key": "watchlist",
|
|
"web-dir": ".Build/web"
|
|
},
|
|
"patches": {
|
|
"typo3/testing-framework": {
|
|
"Support cookies in request": "patches/testing-framework-cookies.patch"
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"@php -r 'is_dir($extFolder=__DIR__.\"/.Build/web/typo3conf/ext/\") || mkdir($extFolder, 0777, true);'",
|
|
"@php -r 'file_exists($extFolder=__DIR__.\"/.Build/web/typo3conf/ext/watchlist\") || symlink(__DIR__,$extFolder);'"
|
|
]
|
|
}
|
|
}
|