forked from goalgorilla/drupal_social
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
87 lines (87 loc) · 2.61 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
78
79
80
81
82
83
84
85
86
87
{
"name": "goalgorilla/social_docker",
"description": "Social docker template for composer based Open Social projects.",
"type": "project",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"composer/installers": "^1.0",
"drupal-composer/drupal-scaffold": "^2.0.0",
"cweagans/composer-patches": "^1.0",
"drush/drush": "8.*@stable",
"goalgorilla/open_social": "dev-8.x-1.x",
"goalgorilla/open_social_scripts": "dev-master"
},
"require-dev": {
"jcalderonzumba/gastonjs": "~1.0.2",
"jcalderonzumba/mink-phantomjs-driver": "~0.3.1",
"mikey179/vfsStream": "~1.2",
"symfony/css-selector": "~2.8",
"behat/behat": "3.*@stable",
"behat/mink": "1.*@stable",
"behat/mink-extension": "*",
"behat/mink-goutte-driver": "*",
"behat/mink-selenium2-driver": "*",
"drupal/coder": "dev-8.x-2.x",
"drupal/drupal-extension": "3.3.0",
"phpmd/phpmd": "@stable",
"pdepend/pdepend": "2.1.0",
"sebastian/phpcpd": "*",
"phpunit/phpunit": "^4.8",
"drupal/console":"~1.0"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"post-install-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
],
"post-update-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
]
},
"extra": {
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"html/core": [
"drupal/core"
],
"html/modules/contrib/{$name}": [
"type:drupal-module"
],
"html/profiles/contrib/social": [
"goalgorilla/open_social"
],
"html/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"html/themes/contrib/{$name}": [
"type:drupal-theme"
],
"html/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
],
"scripts/{$name}": [
"goalgorilla/open_social_scripts"
],
"drush/contrib/{$name}": [
"type:drupal-drush"
]
},
"enable-patching": true
}
}