-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
53 lines (53 loc) · 1.34 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
{
"name": "nuvoleweb/ui-patterns-demo",
"description": "Demo site for the UI Patterns module.",
"type": "project",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Nuvole Web",
"email": "[email protected]"
}
],
"require": {
"composer/installers": "^1.2",
"drupal-composer/drupal-scaffold": "^2.2",
"drupal/core": "~8",
"drush/drush": "~8",
"drupal/config_installer": "~1",
"drupal/console": "~1",
"drupal/ds": "~3",
"drupal/field_group": "~1",
"drupal/coffee": "~1",
"drupal/panels": "~4",
"drupal/features": "~3",
"drupal/page_manager": "*",
"drupal/paragraphs": "~1",
"drupal/token": "~1",
"drupal/bootstrap": "~3",
"drupal/ui_patterns": "1.x-dev"
},
"conflict": {
"drupal/drupal": "*"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"scripts": {
"project-install": "../vendor/bin/drush si config_installer "
},
"extra": {
"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"]
}
}
}