thuecat/composer.json
Daniel Siepmann 5179e82706 Improve skipping detection in TYPO3 converter
All records which are not saved or useable are now skipped.
Some records were converted but could not be stored, e.g. because no
localization was configured for that table.

This should bring small performance improvement and also align import
log with actually imported (converted) records.

Logging is added as well, only debug level, to allow developer and
integrator to analyse why some records are skipped.

Ignore some errors which don't actually exist.
We already check type of entity, and logger is always injected.
2021-09-06 13:47:12 +02:00

81 lines
2.5 KiB
JSON

{
"name": "werkraummedia/thuecat",
"description": "Integration of ThueCat into TYPO3 CMS.",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/werkraum-media/thuecat",
"support": {
"docs": "https://docs.typo3.org/p/werkraummedia/thuecat/master/en-us/",
"email": "coding@daniel-siepmann.de",
"issues": "https://github.com/werkraum-media/thuecat/issues",
"source": "https://github.com/werkraum-media/thuecat"
},
"authors": [
{
"name": "Daniel Siepmann",
"email": "coding@daniel-siepmann.de"
}
],
"autoload": {
"psr-4": {
"WerkraumMedia\\ThueCat\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"WerkraumMedia\\ThueCat\\Tests\\": "Tests/"
}
},
"require": {
"php": "^7.3",
"ext-json": "*",
"ext-mbstring": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/log": "^1.1",
"symfony/console": "^5.2",
"symfony/dependency-injection": "^5.2",
"symfony/property-access": "^5.3",
"symfony/property-info": "^5.3",
"symfony/serializer": "^5.3",
"typo3/cms-backend": "^10.4",
"typo3/cms-core": "^10.4",
"typo3/cms-extbase": "^10.4",
"typo3/cms-frontend": "^10.4"
},
"require-dev": {
"csa/guzzle-cache-middleware": "^1.0",
"friendsoftypo3/phpstan-typo3": "^0.6.0",
"jangregor/phpstan-prophecy": "^0.8.1",
"maglnet/composer-require-checker": "^2.1",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12.71",
"phpstan/phpstan-phpunit": "^0.12.21",
"phpunit/phpunit": "^9.5",
"symplify/easy-coding-standard": "^9.0",
"typo3/cms-fluid-styled-content": "^10.4",
"typo3/testing-framework": "^6.6"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/web/typo3conf/ext/",
"[ -L .Build/web/typo3conf/ext/thuecat ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/thuecat"
]
},
"config": {
"sort-packages": true
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "thuecat",
"web-dir": ".Build/web"
},
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}