2017-04-24 17:46:03 +02:00
|
|
|
{
|
2017-12-23 00:53:15 +01:00
|
|
|
"name": "oliverklee/tea",
|
2018-01-10 19:54:29 +01:00
|
|
|
"description": "TYPO3 example extension for unit testing and best practices",
|
2017-12-23 00:53:15 +01:00
|
|
|
"type": "typo3-cms-extension",
|
|
|
|
"keywords": [
|
2018-01-10 19:54:29 +01:00
|
|
|
"typo3",
|
|
|
|
"example",
|
2017-12-23 00:53:15 +01:00
|
|
|
"extension",
|
2018-01-10 19:54:29 +01:00
|
|
|
"tdd",
|
|
|
|
"phpunit",
|
2017-12-23 00:53:15 +01:00
|
|
|
"unit testing",
|
|
|
|
"best practices"
|
|
|
|
],
|
2018-01-10 19:54:29 +01:00
|
|
|
"homepage": "https://github.com/oliverklee/tdd-reader",
|
|
|
|
"license": "GPL-3.0-or-later",
|
2017-12-23 00:53:15 +01:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Oliver Klee",
|
2018-01-10 19:54:29 +01:00
|
|
|
"email": "typo3-coding@oliverklee.de",
|
|
|
|
"homepage": "https://www.oliverklee.de",
|
|
|
|
"role": "developer"
|
2017-12-23 00:53:15 +01:00
|
|
|
}
|
|
|
|
],
|
2017-12-23 01:18:57 +01:00
|
|
|
"support": {
|
2018-01-10 19:54:29 +01:00
|
|
|
"issues": "https://github.com/oliverklee/tea/issues",
|
|
|
|
"source": "https://github.com/oliverklee/tea"
|
2017-12-23 01:18:57 +01:00
|
|
|
},
|
2017-12-23 00:53:15 +01:00
|
|
|
"require": {
|
2018-01-10 21:41:41 +01:00
|
|
|
"php": "~7.0.0 || ~7.1.0 || ~7.2.0",
|
2018-01-24 15:36:29 +01:00
|
|
|
"typo3/cms-core": "^7.6 || ^8.7",
|
|
|
|
"typo3/cms-fluid": "^7.6 || ^8.7",
|
|
|
|
"typo3/cms-frontend": "^7.6 || ^8.7"
|
2017-12-23 00:53:15 +01:00
|
|
|
},
|
|
|
|
"require-dev": {
|
|
|
|
"nimut/testing-framework": "^2.0.0",
|
2018-01-24 15:36:29 +01:00
|
|
|
"helhum/typo3-composer-setup": "^0.5.1",
|
2017-12-23 00:53:15 +01:00
|
|
|
"phpunit/phpunit": "^5.7.0",
|
2017-12-23 01:18:57 +01:00
|
|
|
"mikey179/vfsStream": "^1.6.0",
|
|
|
|
"roave/security-advisories": "dev-master"
|
2017-12-23 00:53:15 +01:00
|
|
|
},
|
|
|
|
"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": {
|
2018-01-24 15:36:29 +01:00
|
|
|
"vendor-dir": ".Build/vendor"
|
2017-12-23 00:53:15 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
2018-01-24 15:36:29 +01:00
|
|
|
"require-typo3-version": [
|
|
|
|
"@php -r '$conf=json_decode(file_get_contents(__DIR__.\"/composer.json\"),true);$conf[\"require\"][\"typo3/cms-core\"]=$_SERVER[\"argv\"][1];file_put_contents(__DIR__.\"/composer.json\",json_encode($conf,JSON_UNESCAPED_SLASHES|JSON_PRETTY_PRINT).chr(10));'",
|
|
|
|
"@composer install"
|
2017-12-23 00:53:15 +01:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
2018-01-24 15:36:29 +01:00
|
|
|
"dev-master": "2.0.x-dev"
|
2017-12-23 00:53:15 +01:00
|
|
|
},
|
|
|
|
"typo3/cms": {
|
|
|
|
"cms-package-dir": "{$vendor-dir}/typo3/cms",
|
2018-01-24 15:36:29 +01:00
|
|
|
"web-dir": ".Build/public"
|
2017-12-23 00:53:15 +01:00
|
|
|
}
|
2017-04-24 17:46:03 +02:00
|
|
|
}
|
|
|
|
}
|