-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.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
{
"name": "drupal-composer/drupal-project",
"description": "Composer template for Drupal projects",
"repositories": [{
"type": "composer",
"url": "https://packagist.drupal-composer.org"
}],
"require": {
"composer/installers": "~1.0",
"derhasi/composer-preserve-paths": "0.1.*",
"drupal/drupal": "7.*",
"drupal/devel": "7.*",
"drupal/commerce": "7.x",
"drupal/ctools": "7.x",
"drupal/backup_migrate": "7.x",
"drupal/block_class": "7.x",
"drupal/context": "7.x",
"drupal/context_error": "7.x",
"drupal/dc_ajax_add_cart": "7.x",
"drupal/entity": "7.x",
"drupal/image_url_formatter": "7.x",
"drupal/jquery_update": "7.x",
"drupal/libraries": "7.x",
"drupal/media": "7.x",
"drupal/menu_attributes": "7.x",
"drupal/multiblock": "7.x",
"drupal/nodeblock": "7.x",
"drupal/pathauto": "7.x",
"drupal/rate": "7.x",
"drupal/semanticviews": "7.1.0-rc2",
"drupal/special_menu_items": "7.x",
"drupal/token": "7.x",
"drupal/video_embed_field": "7.2.0-beta11",
"drupal/views": "7.x",
"drupal/views_base_url": "7.x",
"drupal/webform": "7.x"
},
"conflict": {
"drupal/core": "8.*"
},
"scripts": {
"post-create-project-cmd": [
"rm README.md LICENSE .travis.yml phpunit.xml.dist"
]
},
"config": {
"vendor-dir": "vendor"
},
"extra": {
"installer-paths": {
"web/": ["type:drupal-core"],
"web/sites/all/modules/{$name}/": ["type:drupal-module"],
"web/sites/all/themes/{$name}/": ["type:drupal-theme"],
"web/sites/all/libraries/{$name}/": ["type:drupal-library"],
"web/sites/all/drush/{$name}/": ["type:drupal-drush"],
"web/profiles/{$name}/": ["type:drupal-profile"]
},
"preserve-paths": [
"web/sites/all/modules",
"web/sites/all/themes",
"web/sites/all/libraries",
"web/sites/all/drush",
"web/sites/default/settings.php",
"web/sites/default/files"
]
}
}