-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.75 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
{
"name": "cpsit/cps-download",
"description": "Downloads. This package is an extension to the TYPO3 system.",
"homepage": "https://github.com/CPS-IT/cps-download",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"repositories": {
"cps-author": {
"type": "vcs",
"url": "[email protected]:CPS-IT/cps-author.git"
},
"cps-utility": {
"type": "vcs",
"url": "[email protected]:CPS-IT/cps-utility.git"
}
},
"require": {
"typo3/cms-core": "^11.5",
"dwenzel/t3extension-tools": "^2.0",
"cpsit/cps-author": "^2.0",
"cpsit/cps-utility": "^1.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"nimut/testing-framework": "^6.0"
},
"extra": {
"typo3/cms": {
"extension-key": "cps_download",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"autoload": {
"psr-4": {
"Cpsit\\CpsDownload\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Cpsit\\CpsDownload\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor/",
"bin-dir": ".Build/bin/",
"platform": {
"php": "7.4"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/cps_download ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/cps_download"
],
"test": [
"@test:unit",
"@test:functional:run"
],
"test:unit": [
"phpunit -c Tests/Build/UnitTests.xml"
],
"test:functional:prepare": [
"typo3cms install:setup --no-interaction --use-existing-database"
],
"test:functional:run": [
".Build/bin/phpunit --colors -c Tests/Build/FunctionalTests.xml Tests/Functional/"
]
}
}