-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
145 lines (145 loc) · 4.94 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
142
143
144
145
{
"name": "westkingdom/website",
"description": "Composer file for http://westkingdom.org website.",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/7"
}
],
"require": {
"composer/installers": "^1.0.21",
"cweagans/composer-patches": "~1.0",
"derhasi/composer-preserve-paths": "0.1.*",
"drupal/adaptive_image": "^1",
"drupal/admin_menu": "^3",
"drupal/admin_views": "^1",
"drupal/adminimal_theme": "^1",
"drupal/auto_nodetitle": "^1",
"drupal/ayah": "^1",
"drupal/better_formats": "^1",
"drupal/breakpoints": "^1",
"drupal/calendar": "^3",
"drupal/cck": "^3",
"drupal/ckeditor_link": "^2",
"drupal/cnr": "^4",
"drupal/composer_vendor": "^1",
"drupal/context": "^3",
"drupal/ctools": "^1",
"drupal/date": "^2",
"drupal/delta": "^3",
"drupal/devel": "^1",
"drupal/diff": "^3",
"drupal/domain": "^3",
"drupal/domain_access_bridge": "^1",
"drupal/domain_blocks": "^3",
"drupal/domain_views": "^1",
"drupal/domaincontext": "^1",
"drupal/drupal": "^7",
"drupal/drupal-driver": "dev-master",
"drupal/elements": "^1",
"drupal/email_confirm": "^1",
"drupal/entity": "^1",
"drupal/entity_view_mode": "^1",
"drupal/entityform": "^1",
"drupal/entityreference": "^1",
"drupal/entityreference_prepopulate": "^1",
"drupal/environment_indicator": "^1",
"drupal/features": "^1",
"drupal/features_extra": "^1",
"drupal/field_group": "^1",
"drupal/field_permissions": "^1",
"drupal/file_entity": "^2",
"drupal/google_analytics": "^2",
"drupal/html5_tools": "^1",
"drupal/image_resize_filter": "^1",
"drupal/imagecache_actions": "^1",
"drupal/imagecrop": "^1",
"drupal/jquery_update": "^2",
"drupal/libraries": "^2",
"drupal/link": "^1",
"drupal/location": "^3",
"drupal/logintoboggan": "^1",
"drupal/machine_name": "^1",
"drupal/media": "^2",
"drupal/media_crop": "^1",
"drupal/module_filter": "^2",
"drupal/multiform": "^1",
"drupal/multiple_email": "^1",
"drupal/og": "^2",
"drupal/og_create_perms": "^1",
"drupal/om_maximenu": "^1",
"drupal/passwordless": "^1",
"drupal/pathauto": "^1",
"drupal/picture": "^1",
"drupal/plupload": "^1",
"drupal/recaptcha": "^2.2",
"drupal/redirect": "^1",
"drupal/references": "^2.0",
"drupal/references_dialog": "^1",
"drupal/rules": "2.3",
"drupal/smtp": "^1",
"drupal/stage_file_proxy": "^1",
"drupal/strongarm": "^2",
"drupal/subpathauto": "^1",
"drupal/term_reference_tree": "^1",
"drupal/token": "^1",
"drupal/token_filter": "^1",
"drupal/update_advanced": "^1",
"drupal/uuid": "^1",
"drupal/uuid_features": "^1",
"drupal/views": "^3",
"drupal/views_bulk_operations": "^3",
"drupal/views_data_export": "^3",
"drupal/wysiwyg": "^2",
"drupal/wysiwyg_filter": "^1",
"drush/drush": "^8",
"phpdocumentor/reflection-docblock": "^2",
"westkingdom/hierarchical-group-email": "~1.0"
},
"require-dev": {
"pantheon-systems/ci-scripts": "1.*",
"phpunit/phpunit": "^4.8"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "5.6.32"
},
"bin-dir": "bin/",
"vendor-dir": "drupal/sites/all/vendor"
},
"extra": {
"enable-patching": true,
"patches-file": "composer-patches.json",
"installer-paths": {
"drupal/sites/all/modules/contrib/{$name}/": ["type:drupal-module"],
"drupal/sites/all/themes/contrib/{$name}/": ["type:drupal-theme"],
"drupal/sites/all/drush/{$name}/": ["type:drupal-drush"],
"drupal/profiles/{$name}/": ["type:drupal-profile"],
"drupal/": ["drupal/drupal"]
},
"preserve-paths": [
"drupal/sites/all/modules/contrib",
"drupal/sites/all/modules/custom",
"drupal/sites/all/modules/modified",
"drupal/sites/all/themes",
"drupal/sites/all/libraries",
"drupal/sites/all/drush",
"drupal/sites/all/vendor",
"drupal/sites/default/settings.php",
"drupal/sites/default/files",
"drupal/drush",
"drupal/files",
"drupal/temp"
],
"violinist": {
"allow_updates_beyond_constraint": 1,
"one_pull_request_per_package": 1,
"update_with_dependencies": 1
}
},
"minimum-stability": "dev",
"prefer-stable": true
}