forked from drevops/vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
141 lines (141 loc) Β· 4.76 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "your_org/your_site",
"description": "Drupal 8 implementation of YOURSITE for YOURORG",
"license": "proprietary",
"require": {
"php": ">=7.0.8",
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6.5",
"drupal/admin_toolbar": "^1.24",
"drupal/auto_entitylabel": "^2.1@beta",
"drupal/coffee": "^1.0-beta2",
"drupal/config_ignore": "^2.2",
"drupal/config_split": "^1.4",
"drupal/config_update": "^1.5",
"drupal/console": "^1.0.2",
"drupal/core-composer-scaffold": "^8.8.0",
"drupal/core-recommended": "^8.8",
"drupal/environment_indicator": "^3.5",
"drupal/pathauto": "^1.3",
"drupal/permissions_filter": "^1.0",
"drupal/redirect": "^1.3",
"drupal/shield": "^1.2",
"drupal/stage_file_proxy": "^1.0-alpha3",
"drupal/token": "^1.5",
"drush/drush": "^9.7.1 | ^10.0.0",
"vlucas/phpdotenv": "^4.0",
"webflo/drupal-finder": "^1.0.0",
"zaporylie/composer-drupal-optimizations": "^1.0"
},
"require-dev": {
"behat/behat": "^3.5",
"behat/gherkin": "^4.6.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"drupal/coder": "^8.2.12",
"drupal/drupal-extension": "^3.4",
"integratedexperts/behat-format-progress-fail": "^0.2",
"integratedexperts/behat-screenshot": "^0.7",
"integratedexperts/behat-steps": "^0.1.0",
"jakub-onderka/php-parallel-lint": "^1.0",
"mikey179/vfsstream": "^1.6",
"phpcompatibility/php-compatibility": "^9.0",
"phpunit/phpunit": "^6.5",
"pyrech/composer-changelogs": "^1.7",
"symfony/filesystem": "^3.2.8",
"symfony/phpunit-bridge": "^3.4.3"
},
"autoload": {
"classmap": [
"scripts/composer/"
]
},
"config": {
"platform": {
"php": "7.3"
},
"process-timeout": 0,
"sort-packages": true
},
"conflict": {
"drupal/drupal": "*"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"scripts": {
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
"Utilities\\composer\\DrupalSettings::create"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
"Utilities\\composer\\DrupalSettings::create"
]
},
"extra": {
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"drupal-scaffold": {
"locations": {
"web-root": "./docroot"
},
"file-mapping": {
"[project-root]/.gitattributes": false,
"[web-root]/.htaccess": false,
"[web-root]/.ht.router.php": false,
"[web-root]/example.gitignore": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/README.txt": false,
"[web-root]/sites/example.settings.local.php": false,
"[web-root]/sites/example.sites.php": false,
"[web-root]/web.config": false
}
},
"enable-patching": true,
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/libraries/{$name}": [
"type:drupal-library"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
]
},
"preserve-paths": [
"docroot/modules/custom",
"docroot/themes/custom",
"docroot/drush",
"docroot/sites/default/settings.php",
"docroot/sites/default/services.yml",
"docroot/sites/default/default.settings.local.php",
"docroot/sites/default/default.services.local.yml",
"docroot/sites/default/settings.local.php",
"docroot/sites/default/services.local.yml",
"docroot/sites/default/files",
"docroot/robots.txt",
"docroot/.htaccess"
]
}
}