-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
42 lines (42 loc) · 1.12 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
{
"name": "drupal/bootstrap_patterns",
"description": "UI Patterns example theme based on Bootstrap.",
"version": "1.0.0-dev",
"type": "drupal-theme",
"keywords": ["drupal", "bootstrap", "ui_patterns"],
"homepage": "https://www.drupal.org/project/ui_patterns",
"license": "GPL-2.0+",
"prefer-stable": true,
"minimum-stability": "dev",
"authors": [
{
"name": "Nuvole Web",
"email": "[email protected]",
"homepage": "http://nuvole.org"
}
],
"require": {
"drupal/ui_patterns": "1.x-dev"
},
"require-dev": {
"nuvoleweb/drupal-component-scaffold": "*",
"drupal/console": "~1",
"drush/drush": "*",
"drupal/core": "~8",
"drupal/bootstrap": "~3"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"extra": {
"installer-paths": {
"build/core": ["type:drupal-core"],
"build/modules/contrib/{$name}": ["type:drupal-module"],
"build/profiles/contrib/{$name}": ["type:drupal-profile"],
"build/themes/contrib/{$name}": ["type:drupal-theme"]
}
}
}