-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 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
{
"name": "team/project",
"description": "Drupal8 Starter.",
"type": "project",
"license": "MIT",
"repositories": [
{
"type": "composer",
"url": "https://packagist.drupal-composer.org"
}
],
"require": {
"composer-plugin-api": "^1.0",
"composer/installers": "^1.0.20",
"cweagans/composer-patches": "~1.0",
"drush/drush": "8.*",
"drupal/core": "8.*",
"drupal/allowed_formats": "8.1.*@dev",
"drupal/cas": "8.1.*@dev",
"drupal/diff": "8.1.*@dev",
"drupal/embed": "8.1.*@dev",
"drupal/entity_embed": "8.1.*@dev",
"drupal/extlink": "8.1.*@dev",
"drupal/google_analytics": "8.2.*@dev",
"drupal/pathauto": "dev-8.x-1.x",
"drupal/r4032login": "8.1.*@dev",
"drupal/token": "8.1.*@dev",
"drupal/video_embed_field": "8.1.*@dev",
"drupal/view_unpublished": "8.1.*@dev"
},
"require-dev": {
"drupal/devel": "8.1.*@dev",
"behat/mink": "~1.6",
"behat/mink-goutte-driver": "~1.2",
"mikey179/vfsStream": "~1.2",
"phpunit/phpunit": "~4.8",
"symfony/css-selector": "2.7.*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"bin-dir": "bin/"
},
"extra": {
"installer-paths": {
"app/core": [
"type:drupal-core"
],
"app/modules/contrib/{$name}": [
"type:drupal-module"
],
"app/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"app/themes/contrib/{$name}": [
"type:drupal-theme"
],
"app/libraries/{$name}": [
"type:drupal-library"
],
"app/drush/commands/{$name}": [
"type:drupal-drush"
]
}
}
}