forked from drupalnorge/drupalnorge-social
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
109 lines (109 loc) · 3.46 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "goalgorilla/social_template",
"description": "Social project template for composer based Open Social projects.",
"type": "project",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"composer/installers": "^v1.4.0",
"drupal-composer/drupal-scaffold": "^2.0.0",
"cweagans/composer-patches": "^1.0",
"goalgorilla/open_social": "1.17",
"drupal/coffee": "1.x-dev",
"drupal/sparkpost": "2.0-beta1",
"drupal/reroute_email": "1.x-dev",
"drupal/slack_invite": "^1.1",
"drupal/honeypot": "~1.26.0",
"drupal/google_analytics": "^2.1",
"drupal/config_ignore": "^2.1",
"drupal/slack": "^1.2",
"drush/drush": "^9@rc",
"drupal/social": "1.17",
"drupal/recaptcha": "^2.3"
},
"require-dev": {
"drupal/coder": "^8.2",
"squizlabs/php_codesniffer": "~2.9.1",
"drupal/drupal-extension": "~3.0",
"drupal/stage_file_proxy": "^1.0@alpha",
"eiriksm/wait-for-listen": "^1.0"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": { "DrupalNorge\\DrupalNorgeSocial\\Tests\\": "tests/src" }
},
"scripts": {
"post-install-cmd": [
"@composer drupal-scaffold"
],
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"test": [
"./vendor/bin/phpcs -p",
"./vendor/bin/behat --colors"
],
"import": [
"./vendor/bin/drush --root=$(pwd)/html cc drush",
"./vendor/bin/drush --root=$(pwd)/html cim -y"
],
"export": [
"./vendor/bin/drush --root=$(pwd)/html cex -y"
],
"build": [
"git pull",
"@composer install --no-dev",
"./vendor/bin/drush --root=$(pwd)/html updb -y",
"@composer import",
"./vendor/bin/drush --root=$(pwd)/html cr"
]
},
"extra": {
"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"
],
"drush/contrib/{$name}": [
"type:drupal-drush"
],
"html/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
]
},
"patches": {
"drupal/core": {
"Keep setting.php intact, add local config to settings.local.php": "https://github.com/zaporylie/drupal/commit/6f0b4e95f28ae945c6fa2bf0e5e81850d3e695f8.patch"
},
"drupal/features": {
"drush 9 compability": "https://cgit.drupalcode.org/features/patch/?id=2e82a6ad751fc88f771be5b4e53b98a8c6eb66b5"
}
},
"enable-patching": true,
"installer-types": [
"bower-asset",
"npm-asset"
]
}
}