-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
98 lines (98 loc) · 3.38 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
{
"name": "bartacus/platformsh-edition",
"license": "GPL-3.0+",
"type": "project",
"description": "The \"Bartacus Platform.Sh Edition\" distribution",
"autoload": {
"psr-4": { "": "src/" },
"classmap": [ "app/AppKernel.php" ]
},
"autoload-dev": {
"files": [ "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
},
"require": {
"php": "^7.1",
"bartacus/bartacus": "^1.0",
"bartacus/platformsh-bundle": "^1.1",
"dmitryd/typo3-realurl": "^2.2",
"helhum/typo3-console": "^4.4",
"incenteev/composer-parameter-handler": "^2.0",
"platformsh/config-reader": "^0.0.1",
"roave/security-advisories": "dev-master",
"sensio/distribution-bundle": "^5.0.19",
"sensio/framework-extra-bundle": "^3.0.2",
"symfony/symfony": "3.3.*",
"typo3/cms": "^8.7",
"typo3/cms-belog": "^8.7",
"typo3/cms-beuser": "^8.7",
"typo3/cms-context-help": "^8.7",
"typo3/cms-filelist": "^8.7",
"typo3/cms-impexp": "^8.7",
"typo3/cms-info": "^8.7",
"typo3/cms-info-pagetsconfig": "^8.7",
"typo3/cms-lowlevel": "^8.7",
"typo3/cms-reports": "^8.7",
"typo3/cms-rsaauth": "^8.7",
"typo3/cms-rte-ckeditor": "^8.7",
"typo3/cms-setup": "^8.7",
"typo3/cms-t3editor": "^8.7",
"typo3/cms-tstemplate": "^8.7",
"typo3/cms-viewpage": "^8.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.2",
"symfony/phpunit-bridge": "^3.0"
},
"scripts": {
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget",
"php vendor/bin/typo3cms install:generatepackagestates",
"php vendor/bin/typo3cms install:fixfolderstructure"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"repositories": [
{
"type": "composer",
"url": "https://composer.typo3.org/"
}
],
"config": {
"sort-packages": true
},
"extra": {
"enable-patching": true,
"composer-exit-on-patch-failure": true,
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"prepare-web-dir": true,
"web-dir": "web"
},
"helhum/typo3-console": {
"install-binary": false,
"install-extension-dummy": false
},
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}