-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (57 loc) · 1.4 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
{
"name": "web-tp3/tp3mods",
"type": "typo3-cms-extension",
"description" : "mods 4 tp3",
"license": "GPL-2.0+",
"require": {
"php": ">=7.0 <7.4",
"typo3/cms-core": "^8.2 || ^9"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"web-tp3/cag_tests":"^1.2",
"phpunit/phpunit": "*",
"helhum/typo3-console": "^5",
"typo3/testing-framework": "*"
},
"autoload": {
"psr-4": {
"Tp3\\Tp3mods\\": "Classes",
"Tp3\\Tp3mods\\ErrorHandling\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tp3\\Tp3mods\\Tests\\": "Tests"
}
},
"replace": {
"web-tp3/tp3mods": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "tp3mods"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"typo3-cms-scripts": [
"typo3cms install:fixfolderstructure",
"typo3cms install:generatepackagestates"
],
"post-autoload-dump": [
"@typo3-cms-scripts"
],
"test:php:unit": [
"@php -v",
"@php bin/phpunit -c Tests/Build/UnitTests.xml"
],
"test:php:func": [
"@php -v",
"@php bin/phpunit -c Tests/Build/FunctionalTests.xml"
]
}
}