-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
113 lines (107 loc) · 2.49 KB
/
Copy pathcomposer.json
File metadata and controls
113 lines (107 loc) · 2.49 KB
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
110
111
112
113
{
"name": "web-tp3/tp3_installer",
"description": "testing typo3",
"homepage": "https://web.tp3.de",
"minimum-stability": "dev",
"version": "2.0.0",
"license": "GPL-3.0+",
"authors": [
{
"name": "Thomas Ruta",
"email": "email@thomasruta.de"
}
],
"repositories": {
"0":{
"type": "path",
"url": "Packages/*",
"options": {
"symlink": true
}
},
"1": {
"type": "composer",
"url": "https://composer.typo3.org/"
}
},
"require": {
"typo3/minimal": "^8.7 || ^9.5",
"helhum/typo3-console": "^5",
"helhum/dotenv-connector": "^2",
"helhum/config-loader": "*",
"helhum/typo3-config-handling": "*",
"typo3/class-alias-loader": "*",
"typo3/cms-composer-installers": "*"
},
"require-dev": {
"helhum/dotenv-connector": "^2.0",
"typo3-console/create-reference-command": "@dev",
"typo3-console/php-server-command": "*",
"typo3-console/composer-typo3-auto-install": "^0.2",
"deployer/deployer": "^6",
"deployer/recipes": "^6",
"consolidation/robo": "^1",
"codeception/codeception":"*",
"typo3/testing-framework": "*",
"friendsofphp/php-cs-fixer": "*",
"se/selenium-server-standalone":"*",
"typo3/cms-styleguide" :"*",
"phpunit/php-invoker":"^1.1",
"web-tp3/chromedriver":"^2",
"phpunit/phpunit": "*",
"nimut/testing-framework": "^3.8@dev",
"web-tp3/cag_tests":"^1.2"
},
"extra": {
"typo3/cms": {
"app-dir": "web",
"web-dir": "web",
"bin-dir": "bin",
"cms-package-dir": "Build/vendor/typo3/cms",
"Package": {
"partOfMinimalUsableSystem": true
}
},
"typo3/class-alias-loader": {
"always-add-alias-loader": true,
"autoload-case-sensitivity": false,
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
]
},
"branch-alias": {
"dev-TYPO3_8-7": "8.x-dev",
"dev-TYPO3_9-5": "9.5.x-dev"
},
"helhum/typo3-console": {
"install-extension-dummy": false
},
"helhum/typo3-config-handling": {
"main-config": "config/settings.yaml",
"prod-config": "config/prod.settings.yaml",
"dev-config": "config/dev.settings.yaml",
"ext-config": "config/includes/extension.yaml"
},
"helhum/dotenv-connector": {
"cache-dir": "var/cache",
"allow-overrides": true,
"env-file": ".env.dist"
},
"CAG/composer": {
"web-root": "web/"
}
},
"scripts": {
"test:php:unit": [
"@php -v",
"@php .Build/bin/phpunit Tests/Unit"
]
},
"config": {
"optimize-autoloader": true,
"bin-dir": "bin",
"vendor-dir":"Build/vendor/",
"sort-packages": false,
"web-root": "../../web/"
}
}