forked from oliverklee/ext-phpunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
109 lines (107 loc) · 3.14 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "oliverklee/phpunit",
"description": "Unit testing for TYPO3. Includes PHPUnit, Selenium, a CLI test runner and a testing framework.",
"type": "typo3-cms-extension",
"keywords": [
"tdd",
"unit testing",
"phpunit",
"typo3"
],
"homepage": "https://www.oliverklee.de/typo3-services/typo3-extensions/phpunit.html",
"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/ext-phpunit/issues",
"source": "https://github.com/oliverklee/ext-phpunit"
},
"require": {
"php": "^5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0",
"typo3/cms-core": "^7.6.23 || ^8.7.9"
},
"require-dev": {
"oliverklee/aaa": "@dev",
"oliverklee/bbb": "@dev",
"oliverklee/ccc": "@dev",
"oliverklee/ddd": "@dev",
"oliverklee/user-phpunittest": "@dev",
"oliverklee/user-phpunittest2": "@dev",
"typo3/cms-frontend": "^7.6.23 || ^8.7.9",
"helhum/typo3-console": "^4.6.1",
"phpunit/phpunit": "~5.3.0",
"phpunit/phpunit-selenium": "^3.0.0",
"mikey179/vfsStream": "^1.6.0"
},
"replace": {
"phpunit": "self.version",
"typo3-ter/phpunit": "self.version"
},
"autoload": {
"classmap": [
"Classes"
]
},
"autoload-dev": {
"psr-4": {
"OliverKlee\\Phpunit\\Tests\\": "Tests/"
}
},
"repositories": [
{
"type": "path",
"url": "TestExtensions/*"
},
{
"type": "composer",
"url": "https://composer.typo3.org/"
}
],
"config": {
"vendor-dir": ".Build/vendor"
},
"scripts": {
"ci:php:lint": "find *.php Classes/ Configuration/ Scripts/ TestExtensions/ Tests/ -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:tests:unit": "$RUN_TESTS_COMMAND Tests/Unit/",
"ci:tests:functional": "$RUN_TESTS_COMMAND Tests/Functional/",
"ci:tests": [
"@ci:tests:unit",
"@ci:tests:functional"
],
"ci:dynamic": [
"@ci:tests"
],
"ci:static": [
"@ci:php:lint"
],
"ci": [
"@ci:static",
"@ci:dynamic"
],
"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/phpunit\") || symlink(__DIR__,$extFolder);'"
],
"post-autoload-dump": [
"@link-extension"
]
},
"extra": {
"branch-alias": {
"*": "5.3.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public"
},
"helhum/typo3-console": {
"install-extension-dummy": "0"
}
}
}