forked from usdoj/foia-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 2.31 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
{
"name": "acquia/blt-project",
"description": "Project template for Drupal 8 sites built with BLT.",
"type": "project",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"acquia/blt": "^8.3",
"drupal/jsonapi": "^1.0",
"drupal/webform": "^5.0@beta",
"drupal/jsonapi_extras": "1.x-dev",
"drupal/address": "~1.0",
"drupal/field_group": "^1.0@RC",
"drupal/simple_oauth": "^2.0@RC",
"drupal/simple_oauth_extras": "^2.0@RC",
"drupal/cors": "~1.0",
"drupal/openapi_redoc": "1.x-dev",
"drupal/field_permissions": "~1.0",
"drupal/cog": "^1.8",
"drupal/migrate_plus": "^4.0",
"drupal/migrate_tools": "^4.0"
},
"require-dev": {
"geerlingguy/drupal-vm": "~4.3"
},
"extra": {
"enable-patching": true,
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"docroot/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/profiles/custom/{$name}": [
"type:drupal-custom-profile"
],
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
"docroot/themes/custom/{$name}": [
"type:drupal-custom-theme"
],
"docroot/libraries/{$name}": [
"type:drupal-library"
],
"drush/contrib/{$name}": [
"type:drupal-drush"
]
},
"merge-plugin": {
"require": [
"vendor/acquia/blt/composer.required.json",
"vendor/acquia/blt/composer.suggested.json"
],
"include": [
"blt/composer.overrides.json"
],
"merge-extra": true,
"merge-extra-deep": true,
"merge-scripts": true,
"replace": true
}
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
}
}