forked from vijaycs85/static-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.35 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
{
"name": "vijaycs85/static-api",
"description": "Static API",
"type": "project",
"license": "GPL-2.0+",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1.0.22",
"cweagans/composer-patches": "dev-master",
"drupal/core": "8.2.*",
"drupal/entity": "1.0.0-alpha4",
"drupal/entity_reference_revisions": "1.0.0",
"drupal/paragraphs": "1.0.0",
"drupal/token": "1.0.0-beta2",
"drupal/default_content": "1.0.0-alpha3",
"drupal-composer/drupal-scaffold": "2.2.0",
"drush/drush": "8.1.3",
"drush/config-extra": "1.0.1"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"vendor-dir": "vendor"
},
"extra": {
"patches-file": "composer.patches.json",
"installer-paths": {
"htdocs/core": [
"type:drupal-core"
],
"htdocs/modules/contrib/{$name}": [
"type:drupal-module"
],
"htdocs/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"htdocs/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/commands/{$name}": [
"type:drupal-drush"
]
},
"drupal-scaffold": {
"excludes": [
"web.config",
"robots.txt"
]
}
}
}