2017-04-24 17:46:03 +02:00
|
|
|
{
|
|
|
|
"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"
|
|
|
|
},
|
2017-05-05 18:00:40 +02:00
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "composer",
|
|
|
|
"url": "https://composer.typo3.org/"
|
|
|
|
}
|
|
|
|
],
|
2017-04-24 17:46:03 +02:00
|
|
|
"require": {
|
2017-09-07 12:49:53 +02:00
|
|
|
"php": "~7.0.0 || ~7.1.0",
|
2017-09-07 13:13:21 +02:00
|
|
|
"typo3/cms-core": "^7.6.0",
|
|
|
|
"roave/security-advisories": "dev-master"
|
2017-05-05 18:00:40 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2017-09-07 12:49:53 +02:00
|
|
|
"namelesscoder/typo3-repository-client": "^1.2.0",
|
|
|
|
"nimut/testing-framework": "^1.0.0",
|
2017-05-05 18:00:40 +02:00
|
|
|
"typo3-ter/phpunit": "*",
|
2017-09-07 12:49:53 +02:00
|
|
|
"phpunit/phpunit": "^5.7.0",
|
|
|
|
"mikey179/vfsStream": "^1.6.0"
|
2017-05-05 18:00:40 +02:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
]
|
2017-04-24 17:46:03 +02:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"OliverKlee\\Tea\\": "Classes/",
|
|
|
|
"OliverKlee\\Tea\\Tests\\": "Tests/"
|
|
|
|
}
|
2017-05-05 18:00:40 +02:00
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"typo3/cms": {
|
|
|
|
"cms-package-dir": "{$vendor-dir}/typo3/cms",
|
|
|
|
"web-dir": ".Build/Web"
|
|
|
|
}
|
2017-04-24 17:46:03 +02:00
|
|
|
}
|
|
|
|
}
|