mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 04:36:12 +01:00
[TASK] Clean up and complete the composer.json
This commit is contained in:
parent
153f701d3d
commit
617ef35c8f
2 changed files with 13 additions and 10 deletions
|
@ -1,26 +1,29 @@
|
||||||
{
|
{
|
||||||
"name": "oliverklee/tea",
|
"name": "oliverklee/tea",
|
||||||
"description": "TYPO3 example extension for unit testing and best practices.",
|
"description": "TYPO3 example extension for unit testing and best practices",
|
||||||
"type": "typo3-cms-extension",
|
"type": "typo3-cms-extension",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"TYPO3",
|
"typo3",
|
||||||
|
"example",
|
||||||
"extension",
|
"extension",
|
||||||
"TDD",
|
"tdd",
|
||||||
"PHPUnit",
|
"phpunit",
|
||||||
"unit testing",
|
"unit testing",
|
||||||
"best practices"
|
"best practices"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/oliverklee/tea",
|
"homepage": "https://github.com/oliverklee/tdd-reader",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0-or-later",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Oliver Klee",
|
"name": "Oliver Klee",
|
||||||
"role": "Developer",
|
"email": "typo3-coding@oliverklee.de",
|
||||||
"homepage": "https://www.oliverklee.de"
|
"homepage": "https://www.oliverklee.de",
|
||||||
|
"role": "developer"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/oliverklee/tea"
|
"issues": "https://github.com/oliverklee/tea/issues",
|
||||||
|
"source": "https://github.com/oliverklee/tea"
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": "~7.0.0 || ~7.1.0",
|
"php": "~7.0.0 || ~7.1.0",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
$EM_CONF[$_EXTKEY] = [
|
$EM_CONF[$_EXTKEY] = [
|
||||||
'title' => 'Tea example',
|
'title' => 'Tea example',
|
||||||
'description' => 'TYPO3 example extension for unit testing and best practices.',
|
'description' => 'Example extension for unit testing and best practices',
|
||||||
'category' => 'example',
|
'category' => 'example',
|
||||||
'author' => 'Oliver Klee',
|
'author' => 'Oliver Klee',
|
||||||
'author_email' => 'typo3-coding@oliverklee.de',
|
'author_email' => 'typo3-coding@oliverklee.de',
|
||||||
|
|
Loading…
Reference in a new issue