mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 23:56:14 +01:00
[FEATURE] Add a composer.json
This commit is contained in:
parent
3b38342345
commit
c322bb8095
1 changed files with 29 additions and 0 deletions
29
composer.json
Normal file
29
composer.json
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"name": "oliverklee/tea",
|
||||
"type": "typo3-cms-extension",
|
||||
"version": "1.0.0",
|
||||
"description": "This extension serves as an example on how to unit-test different data types and relation types in TYPO3 extensions.",
|
||||
"keywords": ["TYPO3", "extension", "tdd", "phpunit", "unit testing"],
|
||||
"homepage": "https://www.oliverklee.de",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Oliver Klee",
|
||||
"role": "Developer",
|
||||
"homepage": "https://www.oliverklee.de"
|
||||
}
|
||||
],
|
||||
"license": ["GPL-2.0+"],
|
||||
"replace": {
|
||||
"tea": "self.version",
|
||||
"typo3-ter/tea": "self.version"
|
||||
},
|
||||
"require": {
|
||||
"typo3/cms-core": "^7.6.0 || ^8.7.0"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"OliverKlee\\Tea\\": "Classes/",
|
||||
"OliverKlee\\Tea\\Tests\\": "Tests/"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue