-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
129 lines (129 loc) · 4.71 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
{
"name": "manaticr/platformsh-drupal-template",
"description": "Project template for Drupal 8 projects with a relocated document",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/drupal",
"support": {
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
"chat": "https://www.drupal.org/node/314178"
},
"authors": [
{
"name": "Manati",
"email": "info@estudiomanati.com"
},
{
"name": "Marvin J. Cortés",
"email": "marvin@estudiomanati.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.6",
"drupal/admin_toolbar": "^2.3",
"drupal/better_exposed_filters": "^4.0",
"drupal/config_split": "^1.4",
"drupal/core-composer-scaffold": "^8.9",
"drupal/core-recommended": "^8.9",
"drupal/devel": "^4.0",
"drupal/environment_indicator": "^4.0",
"drupal/focal_point": "^1.5",
"drupal/google_analytics": "^3.1",
"drupal/honeypot": "^2.0",
"drupal/image_style_quality": "^1.4",
"drupal/layout_builder_browser": "^1.1",
"drupal/layout_builder_modal": "^1.1",
"drupal/media_entity_facebook": "^2.0",
"drupal/media_entity_instagram": "^2.1",
"drupal/media_entity_twitter": "^2.4",
"drupal/metatag": "^1.14",
"drupal/paragraphs": "^1.12",
"drupal/pathauto": "^1.8",
"drupal/quicklink": "^1.3",
"drupal/rabbit_hole": "^1.0",
"drupal/recaptcha": "^3.0",
"drupal/redirect": "^1.6",
"drupal/redis": "^1.4",
"drupal/retina_images": "1.x-dev",
"drupal/search_api_solr": "^4.1",
"drupal/seckit": "^2.0",
"drupal/shs": "^1.0",
"drupal/smtp": "^1.0",
"drupal/stage_file_proxy": "^1.0",
"drupal/svg_image": "^1.14",
"drupal/twig_tweak": "^2.6",
"drupal/xmlsitemap": "^1.0",
"drush/drush": "^10.3",
"kint-php/kint": "^3.3",
"kporras07/composer-symlinks": "dev-master",
"manaticr/bloom": "^1.0",
"platformsh/config-reader": "^2.3"
},
"require-dev": {
"chirripo/chirripo": "^1.0",
"drupal/coder": "^8.3",
"drupal/core-dev": "^8.9",
"squizlabs/php_codesniffer": "^3.5"
},
"conflict": {
"drupal/drupal": "*"
},
"config": {
"sort-packages": true,
"preferred-install": "source"
},
"scripts": {
"post-install-cmd": [
"Kporras07\\ComposerSymlinks\\ScriptHandler::createSymlinks"
],
"post-update-cmd": [
"Kporras07\\ComposerSymlinks\\ScriptHandler::createSymlinks"
],
"post-create-project-cmd": [
"cp vendor/chirripo/chirripo/env.example env.example",
"cp vendor/chirripo/chirripo/env.example .env",
"echo 'Update .env files as required and uncomment lines at the end of settings.php'",
"echo 'Then, run ./bin/chirripo start'"
]
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"symlinks": {
"settings/settings.php": "web/sites/default/settings.php",
"settings/settings.local.php": "web/sites/default/settings.local.php",
"settings/settings.platformsh.php": "web/sites/default/settings.platformsh.php",
"settings/settings.secret.php": "web/sites/default/settings.secret.php",
"settings/services.yml": "web/sites/default/services.yml",
"settings/services.local.yml": "web/sites/default/services.local.yml",
"files": "web/sites/default/files",
"config": "web/sites/default/config",
"modules/custom": "web/modules/custom",
"themes/custom": "web/themes/custom"
},
"enable-patching": true,
"patches-file": "composer.patches.json"
}
}