mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-08 17:06:09 +01:00
b789987402
Core extensions installed individually (from subtree split) must never be installed together with the typo3/cms package We can avoid this, by adding a conflict section in each composer.json Resolves: #81982 Releases: master, 8.7 Change-Id: Ia6a346227852237f58875a3e3216d3cad298f8bf Reviewed-on: https://review.typo3.org/53603 Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Markus Klein <markus.klein@typo3.org> Reviewed-by: Sascha Egerer <sascha@sascha-egerer.de> Reviewed-by: Helmut Hummel <typo3@helhum.io> Tested-by: Helmut Hummel <typo3@helhum.io>
27 lines
410 B
JSON
27 lines
410 B
JSON
{
|
|
"name": "typo3/cms-feedit",
|
|
"type": "typo3-cms-framework",
|
|
"description": "TYPO3 Core",
|
|
"homepage": "https://typo3.org",
|
|
"license": ["GPL-3.0+"],
|
|
|
|
"require": {
|
|
"typo3/cms-core": "*"
|
|
},
|
|
"conflict": {
|
|
"typo3/cms": "*"
|
|
},
|
|
"replace": {
|
|
"feedit": "*"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "9.x-dev"
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"TYPO3\\CMS\\Feedit\\": "Classes/"
|
|
}
|
|
}
|
|
}
|