Skip to content

Commit

Permalink
Drupal 10.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mbuechner committed Nov 21, 2024
1 parent 38b9a8b commit acdb25a
Show file tree
Hide file tree
Showing 6 changed files with 479 additions and 122 deletions.
31 changes: 31 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#
# Copy and rename this file to .env at root of this project.
#

# A common use case is to supply database creds via the environment. Edit settings.php
# like so:
#
# $databases['default']['default'] = [
# 'database' => getenv('MYSQL_DATABASE'),
# 'driver' => 'mysql',
# 'host' => getenv('MYSQL_HOSTNAME'),
# 'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
# 'password' => getenv('MYSQL_PASSWORD'),
# 'port' => getenv('MYSQL_PORT'),
# 'prefix' => '',
# 'username' => getenv('MYSQL_USER'),
# ];
#
# Uncomment and populate the following to run codingdavinci.de (ddbcdv):
# MYSQL_DATABASE=ddbcdvdb
# MYSQL_HOSTNAME=localhost
# MYSQL_PASSWORD=ddbcdvpw
# MYSQL_PORT=3306
# MYSQL_USER=ddbcdvuser
# HASH_SALT=MY_SECRET_SALT
# UPDATE_FREE_ACCESS=FALSE
# FILE_PUBLIC_PATH=sites/default/files
# TRUSTED_HOST_PATTERNS="^localhost\$, ^127.0.0.1\$"

# Another common use case is to set Drush's --uri via environment.
# DRUSH_OPTIONS_URI=http://example.com
14 changes: 8 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"require": {
"ext-gd": "*",
"bower-asset/fontawesome": "^5.15",
"composer/installers": "^1.11",
"composer/installers": "^2",
"drupal/admin_toolbar": "^3.0",
"drupal/ape": "^1.5",
"drupal/bartik": "^1.0",
Expand Down Expand Up @@ -85,15 +85,15 @@
"npm-asset/select2": "^4.0",
"npm-asset/typeface-barlow": "*",
"npm-asset/waypoints": "^4.0",
"oomphinc/composer-installers-extender": "^2.0.0",
"vlucas/phpdotenv": "^2.6",
"oomphinc/composer-installers-extender": "^2",
"vlucas/phpdotenv": "^5",
"webflo/drupal-finder": "^1.2",
"wikimedia/composer-merge-plugin": "^2.0"
"wikimedia/composer-merge-plugin": "^2.1"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"minimum-stability": "alpha",
"prefer-stable": true,
"config": {
"sort-packages": true,
Expand Down Expand Up @@ -158,7 +158,9 @@
},
"merge-plugin": {
"include": [
"composer.*.json"
"composer.*.json",
"web/modules/contrib/*/composer.libraries.json",
"web/modules/custom/*/composer.libraries.json"
],
"recurse": true,
"replace": false,
Expand Down
Loading

0 comments on commit acdb25a

Please sign in to comment.