This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
147 lines (147 loc) · 5.32 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "goalgorilla/social_template",
"description": "Social project template for composer based Open Social projects.",
"type": "project",
"license": "GPL-2.0-or-later",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": "^8.0",
"drupal/coffee": "^1.0",
"drupal/config_ignore": "^2.1",
"drupal/core": "~9.5.11",
"drupal/core-composer-scaffold": "~9.5.11",
"drupal/google_analytics": "^4.0",
"drupal/honeypot": "^2.0",
"drupal/message_notify": "^1.3",
"drupal/recaptcha": "^3.0",
"drupal/reroute_email": "^2.0",
"drupal/slack": "^1.2",
"drupal/slack_invite": "^2.0",
"drupal/social_search_autocomplete": "^2.0",
"drupal/sparkpost": "^2.0",
"drush/drush": "^11.0",
"eiriksm/site-schema": "^1.1",
"goalgorilla/open_social": "^11.11",
"monolog/monolog": "^2.3.5"
},
"require-dev": {
"behatch/contexts": "^3.3",
"bex/behat-screenshot": "^2.1",
"drupal/core-dev": "~9.5.11",
"drupal/drupal-extension": "~4.0",
"drupal/stage_file_proxy": "^2.0",
"eiriksm/wait-for-listen": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"discard-changes": true,
"sort-packages": true,
"bin-dir": "bin/",
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"oomphinc/composer-installers-extender": true
}
},
"autoload": {
"psr-4": { "DrupalNorge\\DrupalNorgeSocial\\Tests\\": "tests/src" }
},
"scripts": {
"test": [
"./bin/phpcs -p -n",
"./bin/behat --colors --strict"
],
"import": [
"./bin/drush --root=$(pwd)/html cache:clear drush",
"./bin/drush --root=$(pwd)/html config:import --yes",
"./bin/drush --root=$(pwd)/html cache:rebuild"
],
"export": [
"./bin/drush --root=$(pwd)/html cache:clear drush",
"./bin/drush --root=$(pwd)/html config:export --yes"
],
"update-site": [
"./bin/drush --root=$(pwd)/html state:set system.maintenance_mode 1 --yes",
"./bin/drush --root=$(pwd)/html deploy --yes",
"./bin/drush --root=$(pwd)/html state:set system.maintenance_mode 0 --yes",
"./bin/drush --root=$(pwd)/html cache:rebuild"
],
"build": [
"git pull",
"@composer install --no-dev",
"@composer update-site"
],
"import-sanitized": [
"./bin/drush --root=$(pwd)/html sql:drop --yes",
"wget --no-check-certificate https://www.drupalnorge.no/sanitized.db",
"./bin/drush --root=$(pwd)/html sql:cli < ./sanitized.db",
"rm -f ./sanitized.db",
"./bin/drush --root=$(pwd)/html cache:rebuild",
"./bin/drush --root=$(pwd)/html user:login"
]
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "html/"
}
},
"installer-types": ["bower-asset", "npm-asset"],
"installer-paths": {
"html/core": ["drupal/core"],
"html/libraries/{$name}": ["type:drupal-library", "type:bower-asset", "type:npm-asset"],
"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/Commands/contrib/{$name}": ["type:drupal-drush"]
},
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/core": {
"[https://dgo.to/3300404] - Unserialize(): Passing null to parameter #1 ($data) of type string is deprecated in Drupal\\Core\\Entity\\Sql\\SqlContentEntityStorage::loadFromSharedTables()": "https://www.drupal.org/files/issues/2023-03-03/3300404-28-map-field-failing-php-81-combined.patch"
}
},
"patches-ignore": {
},
"violinist": {
"bundled_packages": {
"drupal/core": [
"drupal/core-composer-scaffold",
"drupal/core-dev",
"drush/drush"
],
"goalgorilla/open_social": [
"drupal/core",
"drupal/core-composer-scaffold",
"drupal/core-dev",
"drush/drush"
]
},
"blocklist": [
"drupal/core-composer-scaffold",
"drupal/core-dev"
],
"one_pull_request_per_package": 1,
"allow_update_indirect_with_direct": 1,
"allow_updates_beyond_constraint": 0
}
}
}