mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 23:56:14 +01:00
78 lines
2 KiB
JSON
78 lines
2 KiB
JSON
{
|
|
"name": "oliverklee/tea",
|
|
"description": "TYPO3 example extension for unit testing and best practices",
|
|
"type": "typo3-cms-extension",
|
|
"keywords": [
|
|
"typo3",
|
|
"example",
|
|
"extension",
|
|
"tdd",
|
|
"phpunit",
|
|
"unit testing",
|
|
"best practices"
|
|
],
|
|
"homepage": "https://github.com/oliverklee/tdd-reader",
|
|
"license": "GPL-3.0-or-later",
|
|
"authors": [
|
|
{
|
|
"name": "Oliver Klee",
|
|
"email": "typo3-coding@oliverklee.de",
|
|
"homepage": "https://www.oliverklee.de",
|
|
"role": "developer"
|
|
}
|
|
],
|
|
"support": {
|
|
"issues": "https://github.com/oliverklee/tea/issues",
|
|
"source": "https://github.com/oliverklee/tea"
|
|
},
|
|
"require": {
|
|
"php": "~7.0.0 || ~7.1.0",
|
|
"typo3/cms-core": "^7.6 || ^8.7"
|
|
},
|
|
"require-dev": {
|
|
"namelesscoder/typo3-repository-client": "^1.2.0",
|
|
"nimut/testing-framework": "^2.0.0",
|
|
"phpunit/phpunit": "^5.7.0",
|
|
"mikey179/vfsStream": "^1.6.0",
|
|
"roave/security-advisories": "dev-master"
|
|
},
|
|
"replace": {
|
|
"tea": "self.version",
|
|
"typo3-ter/tea": "self.version"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"OliverKlee\\Tea\\": "Classes/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"OliverKlee\\Tea\\Tests\\": "Tests/"
|
|
}
|
|
},
|
|
"repositories": [
|
|
{
|
|
"type": "composer",
|
|
"url": "https://composer.typo3.org/"
|
|
}
|
|
],
|
|
"config": {
|
|
"vendor-dir": ".Build/vendor",
|
|
"bin-dir": ".Build/bin"
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"mkdir -p .Build/Web/typo3conf/ext/",
|
|
"[ -L .Build/Web/typo3conf/ext/tea ]|| ln -snvf ../../../../. .Build/Web/typo3conf/ext/tea"
|
|
]
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.x-dev"
|
|
},
|
|
"typo3/cms": {
|
|
"cms-package-dir": "{$vendor-dir}/typo3/cms",
|
|
"web-dir": ".Build/Web"
|
|
}
|
|
}
|
|
}
|