-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.86 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
{
"repositories": [
{
"type": "path",
"url": "packages/*"
},
{
"type": "composer",
"url": "https://composer.typo3.org/"
}
],
"name": "helhum/typo3-distribution",
"description": "TYPO3 CMS Distribution with console and .env support",
"license": "GPL-2.0-or-later",
"config": {
"sort-packages": true,
"platform": {
"php": "7.1.19"
}
},
"version": "0.1.0",
"scripts": {
"dev:serve": "typo3cms --ansi server:run",
"php:format": "php-cs-fixer fix --config .php_cs.dist --ansi"
},
"require": {
"dmitryd/typo3-realurl": "^2.4",
"helhum/typo3-config-handling": "^0.7",
"helhum/typo3-console": "^5.4",
"helhum/typo3-secure-web": "^0.2.7",
"ichhabrecht/content-defender": "^3.0",
"m2s/error-handling": "^1.0",
"m2s/site-package": "^0.1.0",
"m2s/typo3-poi-map": "^1.3",
"typo3-console/composer-auto-commands": "^0.2",
"typo3/cms-belog": "^8.7.9",
"typo3/cms-beuser": "^8.7.9",
"typo3/cms-context-help": "^8.7.9",
"typo3/cms-fluid-styled-content": "^8.7.9",
"typo3/cms-impexp": "^8.7.9",
"typo3/cms-info": "^8.7.9",
"typo3/cms-info-pagetsconfig": "^8.7.9",
"typo3/cms-lowlevel": "^8.7.9",
"typo3/cms-reports": "^8.7.9",
"typo3/cms-rsaauth": "^8.7.9",
"typo3/cms-rte-ckeditor": "^8.7.9",
"typo3/cms-saltedpasswords": "^8.7.9",
"typo3/cms-setup": "^8.7.9",
"typo3/cms-tstemplate": "^8.7.9",
"typo3/cms-viewpage": "^8.7.9"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"friendsofphp/php-cs-fixer": "^2.13",
"helhum/dotenv-connector": "^2.0",
"typo3-console/composer-typo3-auto-install": "^0.2",
"typo3-console/php-server-command": "^0.2",
"typo3/testing-framework": "^1.2.2 || ^2.0.1"
},
"extra": {
"typo3/cms": {
"root-dir": "private",
"web-dir": "public"
}
}
}