feedit/composer.json
Alexander Nitsche 58201ce398 [TASK] Align with new TYPO3 documentation standards
- align README.md
- align ext_emconf.php, composer.json
- add Settings.cfg, Index.rst, Includes.rst.txt
- add .editorconfig, .gitignore

See https://docs.typo3.org/m/typo3/docs-how-to-document/main/en-us/GeneralConventions/FileStructure.html for further details.
2022-04-05 12:46:08 +02:00

40 lines
863 B
JSON

{
"name": "friendsoftypo3/feedit",
"type": "typo3-cms-extension",
"description": "Edit TYPO3 page content elements directly in the frontend as a logged-in backend user.",
"homepage": "https://typo3.org",
"license": ["GPL-2.0-or-later"],
"authors": [{
"name": "TYPO3 Core Team",
"email": "typo3cms@typo3.org",
"role": "Developer"
}],
"config": {
"sort-packages": true
},
"require": {
"typo3/cms-adminpanel": "^10.0",
"typo3/cms-backend": "^10.0",
"typo3/cms-core": "^10.0",
"typo3/cms-frontend": "^10.0",
"psr/http-message": "~1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"conflict": {
"typo3/cms": "*"
},
"replace": {
"typo3/cms-feedit": "*"
},
"extra": {
"typo3/cms": {
"extension-key": "feedit"
}
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Feedit\\": "Classes/"
}
}
}