Skip to content

Commit acdb25a

Browse files
committed
Drupal 10.3.9
1 parent 38b9a8b commit acdb25a

File tree

6 files changed

+479
-122
lines changed

6 files changed

+479
-122
lines changed

.env.example

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#
2+
# Copy and rename this file to .env at root of this project.
3+
#
4+
5+
# A common use case is to supply database creds via the environment. Edit settings.php
6+
# like so:
7+
#
8+
# $databases['default']['default'] = [
9+
# 'database' => getenv('MYSQL_DATABASE'),
10+
# 'driver' => 'mysql',
11+
# 'host' => getenv('MYSQL_HOSTNAME'),
12+
# 'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
13+
# 'password' => getenv('MYSQL_PASSWORD'),
14+
# 'port' => getenv('MYSQL_PORT'),
15+
# 'prefix' => '',
16+
# 'username' => getenv('MYSQL_USER'),
17+
# ];
18+
#
19+
# Uncomment and populate the following to run codingdavinci.de (ddbcdv):
20+
# MYSQL_DATABASE=ddbcdvdb
21+
# MYSQL_HOSTNAME=localhost
22+
# MYSQL_PASSWORD=ddbcdvpw
23+
# MYSQL_PORT=3306
24+
# MYSQL_USER=ddbcdvuser
25+
# HASH_SALT=MY_SECRET_SALT
26+
# UPDATE_FREE_ACCESS=FALSE
27+
# FILE_PUBLIC_PATH=sites/default/files
28+
# TRUSTED_HOST_PATTERNS="^localhost\$, ^127.0.0.1\$"
29+
30+
# Another common use case is to set Drush's --uri via environment.
31+
# DRUSH_OPTIONS_URI=http://example.com

composer.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"require": {
2323
"ext-gd": "*",
2424
"bower-asset/fontawesome": "^5.15",
25-
"composer/installers": "^1.11",
25+
"composer/installers": "^2",
2626
"drupal/admin_toolbar": "^3.0",
2727
"drupal/ape": "^1.5",
2828
"drupal/bartik": "^1.0",
@@ -85,15 +85,15 @@
8585
"npm-asset/select2": "^4.0",
8686
"npm-asset/typeface-barlow": "*",
8787
"npm-asset/waypoints": "^4.0",
88-
"oomphinc/composer-installers-extender": "^2.0.0",
89-
"vlucas/phpdotenv": "^2.6",
88+
"oomphinc/composer-installers-extender": "^2",
89+
"vlucas/phpdotenv": "^5",
9090
"webflo/drupal-finder": "^1.2",
91-
"wikimedia/composer-merge-plugin": "^2.0"
91+
"wikimedia/composer-merge-plugin": "^2.1"
9292
},
9393
"conflict": {
9494
"drupal/drupal": "*"
9595
},
96-
"minimum-stability": "dev",
96+
"minimum-stability": "alpha",
9797
"prefer-stable": true,
9898
"config": {
9999
"sort-packages": true,
@@ -158,7 +158,9 @@
158158
},
159159
"merge-plugin": {
160160
"include": [
161-
"composer.*.json"
161+
"composer.*.json",
162+
"web/modules/contrib/*/composer.libraries.json",
163+
"web/modules/custom/*/composer.libraries.json"
162164
],
163165
"recurse": true,
164166
"replace": false,

0 commit comments

Comments
 (0)