File tree Expand file tree Collapse file tree 6 files changed +479
-122
lines changed Expand file tree Collapse file tree 6 files changed +479
-122
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 22
22
"require" : {
23
23
"ext-gd" : " *" ,
24
24
"bower-asset/fontawesome" : " ^5.15" ,
25
- "composer/installers" : " ^1.11 " ,
25
+ "composer/installers" : " ^2 " ,
26
26
"drupal/admin_toolbar" : " ^3.0" ,
27
27
"drupal/ape" : " ^1.5" ,
28
28
"drupal/bartik" : " ^1.0" ,
85
85
"npm-asset/select2" : " ^4.0" ,
86
86
"npm-asset/typeface-barlow" : " *" ,
87
87
"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 " ,
90
90
"webflo/drupal-finder" : " ^1.2" ,
91
- "wikimedia/composer-merge-plugin" : " ^2.0 "
91
+ "wikimedia/composer-merge-plugin" : " ^2.1 "
92
92
},
93
93
"conflict" : {
94
94
"drupal/drupal" : " *"
95
95
},
96
- "minimum-stability" : " dev " ,
96
+ "minimum-stability" : " alpha " ,
97
97
"prefer-stable" : true ,
98
98
"config" : {
99
99
"sort-packages" : true ,
158
158
},
159
159
"merge-plugin" : {
160
160
"include" : [
161
- " composer.*.json"
161
+ " composer.*.json" ,
162
+ " web/modules/contrib/*/composer.libraries.json" ,
163
+ " web/modules/custom/*/composer.libraries.json"
162
164
],
163
165
"recurse" : true ,
164
166
"replace" : false ,
You can’t perform that action at this time.
0 commit comments