legacy-collections/composer.json
Alexander Nitsche 35ba470a03 [TASK] Add TER + documentation + repository to composer.json
Add the common extension destinations to composer.json. Packagist
displays them in a prominent place.
2022-04-08 20:09:28 +02:00

41 lines
1 KiB
JSON

{
"name": "friendsoftypo3/legacy-collections",
"type": "typo3-cms-extension",
"description": "Legacy Collection PHP APIs for sys_collection database tables.",
"homepage": "https://extensions.typo3.org/extension/legacy_collections",
"support": {
"issues": "https://github.com/FriendsOfTYPO3/legacy-collections/issues",
"source": "https://github.com/FriendsOfTYPO3/legacy-collections",
"docs": "https://docs.typo3.org/p/friendsoftypo3/legacy-collections/main/en-us/"
},
"license": ["GPL-2.0+"],
"require": {
"php": "^7.2 || ^8.0",
"typo3/cms-core": "^10.0 || ^11.5",
"typo3/cms-frontend": "^10.0 || ^11.5"
},
"require-dev": {
"typo3/testing-framework": "^6.3.2"
},
"extra": {
"typo3/class-alias-loader": {
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
]
},
"typo3/cms": {
"extension-key": "legacy_collections"
}
},
"autoload": {
"psr-4": {
"FriendsOfTYPO3\\LegacyCollections\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FriendsOfTYPO3\\LegacyCollections\\Tests\\": "Tests/"
}
}
}