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",
|
2019-08-08 12:38:56 +02:00
|
|
|
"license": "GPL-2.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-05-28 15:08:56 +02:00
|
|
|
"typo3/cms-core": "^7.6.23 || ^8.7.10",
|
|
|
|
"typo3/cms-fluid": "^7.6.23 || ^8.7.10",
|
|
|
|
"typo3/cms-frontend": "^7.6.23 || ^8.7.10"
|
2017-12-23 00:53:15 +01:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2018-05-28 15:08:56 +02:00
|
|
|
"typo3/cms-fluid-styled-content": "^7.6.23 || ^8.7.10",
|
2018-10-25 21:46:46 +02:00
|
|
|
"helhum/typo3-composer-setup": "^0.5.3",
|
|
|
|
"helmich/typo3-typoscript-lint": "^1.4.7",
|
|
|
|
"nimut/testing-framework": "^4.1.3",
|
2019-08-08 12:45:07 +02:00
|
|
|
"codeception/codeception": "^2.5"
|
2017-12-23 00:53:15 +01:00
|
|
|
},
|
|
|
|
"replace": {
|
|
|
|
"typo3-ter/tea": "self.version"
|
|
|
|
},
|
2018-05-28 15:08:56 +02:00
|
|
|
"conflict": {
|
|
|
|
"typo3/cms-composer-installers": "<1.4.6"
|
|
|
|
},
|
2017-12-23 00:53:15 +01:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"OliverKlee\\Tea\\": "Classes/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"OliverKlee\\Tea\\Tests\\": "Tests/"
|
|
|
|
}
|
|
|
|
},
|
2018-05-25 17:18:03 +02:00
|
|
|
"prefer-stable": true,
|
2017-12-23 00:53:15 +01:00
|
|
|
"config": {
|
2018-05-25 17:18:03 +02:00
|
|
|
"preferred-install": {
|
|
|
|
"*": "dist"
|
|
|
|
},
|
2018-01-24 15:36:29 +01:00
|
|
|
"vendor-dir": ".Build/vendor"
|
2017-12-23 00:53:15 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
2018-01-27 16:04:27 +01:00
|
|
|
"ci:php:lint": "find *.php Classes/ Configuration/ Tests/ -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
|
2018-01-27 17:44:42 +01:00
|
|
|
"ci:ts:lint": "typoscript-lint -c Configuration/TsLint.yml --ansi -n --fail-on-warnings -vvv Configuration/TypoScript/",
|
2018-05-25 16:19:12 +02:00
|
|
|
"ci:tests:unit": "phpunit -c .Build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml Tests/Unit/",
|
|
|
|
"ci:tests:functional": "phpunit -c .Build/vendor/nimut/testing-framework/res/Configuration/FunctionalTests.xml Tests/Functional/",
|
|
|
|
"ci:tests": [
|
|
|
|
"@ci:tests:unit",
|
|
|
|
"@ci:tests:functional"
|
|
|
|
],
|
|
|
|
"ci:dynamic": [
|
|
|
|
"@ci:tests"
|
|
|
|
],
|
2018-01-27 16:04:27 +01:00
|
|
|
"ci:static": [
|
2018-01-27 17:44:42 +01:00
|
|
|
"@ci:php:lint",
|
|
|
|
"@ci:ts:lint"
|
2018-01-27 16:04:27 +01:00
|
|
|
],
|
|
|
|
"ci": [
|
|
|
|
"@ci:static"
|
|
|
|
],
|
2018-01-25 18:59:55 +01:00
|
|
|
"link-extension": [
|
|
|
|
"@php -r 'is_dir($extFolder=__DIR__.\"/.Build/public/typo3conf/ext/\") || mkdir($extFolder, 0777, true);'",
|
|
|
|
"@php -r 'file_exists($extFolder=__DIR__.\"/.Build/public/typo3conf/ext/tea\") || symlink(__DIR__,$extFolder);'"
|
|
|
|
],
|
|
|
|
"post-autoload-dump": [
|
|
|
|
"@link-extension"
|
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": {
|
2018-05-28 15:08:56 +02:00
|
|
|
"extension-key": "tea",
|
2017-12-23 00:53:15 +01:00
|
|
|
"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
|
|
|
}
|
|
|
|
}
|