forked from shaysmith/eessmith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
121 lines (121 loc) · 3.99 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
{
"name": "acquia/eessmith",
"description": "Composer build of my employee site.",
"type": "project",
"license": "GPL-2.0+",
"require": {
"composer/installers": "^1.11",
"cweagans/composer-patches": "^1.7",
"drupal/core-recommended": "^9.2",
"drupal/stage_file_proxy": "^1.1.0",
"drupal/google_analytics": "^3.1.0",
"drupal/acquia_connector": "^1.25.0",
"drupal/youtube": "^1.2.0",
"drupal/bootstrap": "^3.23",
"acquia/cohesion": "^6.6",
"acquia/cohesion-theme": "^6.6",
"drupal/entity_reference_revisions": "^1.9.0",
"drupal/imce": "^2.2",
"drupal/token": "^1.9.0",
"drupal/core-composer-scaffold": "^9.2",
"drupal/upgrade_status": "^3.8",
"drupal/core-project-message": "^9.2",
"drush/drush": "^10.5",
"drupal/core": "^9.2.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"vendor-dir": "vendor"
},
"extra": {
"_readme": [
"By default Drupal loads the autoloader from ./vendor/autoload.php.",
"To change the autoloader you can edit ./autoload.php."
],
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/modules/contrib/{$name}/": [
"type:drupal-module"
],
"docroot/themes/contrib/{$name}/": [
"type:drupal-theme"
],
"docroot/libraries/{$name}/": [
"type:drupal-library"
],
"docroot/profiles/contrib/{$name}/": [
"type:drupal-profile"
],
"docroot/modules/custom/{$name}/": [
"type:drupal-module-custom"
]
},
"merge-plugin": {
"recurse": false,
"replace": false,
"merge-extra": false
},
"patches": [],
"drupal-scaffold": {
"excludes": [
".htaccess",
"robots.txt",
"themes/bootstrap_clean_blog"
],
"locations": {
"web-root": "./docroot"
},
"file-mapping": {
"[web-root]/.htaccess": false,
"[web-root]/robots.txt": false
},
"violinist": {
"allow_updates_beyond_constraint": 1,
"assignees": [],
"blocklist": [],
"branch_prefix": "",
"bundled_packages": {},
"commit_message_convention": "conventional",
"default_branch": "master",
"number_of_concurrent_updates": 0,
"one_pull_request_per_package": 0,
"run_scripts": 1,
"security_updates_only": 0,
"timeframe_disallowed": 0,
"timezone": "-0700",
"update_dev_dependencies": 1,
"update_with_dependencies": 1
}
}
},
"scripts": {
"post-install-cmd": [
"@composer drupal-scaffold",
"find docroot vendor -name '.git' | xargs rm -rf",
"find docroot vendor -name '.github' | xargs rm -rf"
],
"post-update-cmd": [
"@composer drupal-scaffold",
"find docroot vendor -name '.git' | xargs rm -rf",
"find docroot vendor -name '.github' | xargs rm -rf"
],
"drupal-scaffold": "echo 'Drupal Scaffold has been removed by Acquia RA. Please remove all references to it from your composer.json.'"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"dx8": {
"type": "vcs",
"url": "https://bitbucket.org/cohesion_dev/dx8-module.git"
},
"dx8-theme": {
"type": "vcs",
"url": "https://bitbucket.org/cohesion_dev/dx8-theme.git"
}
}
}