Skip to content

Commit

Permalink
Update composer dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
plopesc committed Jan 10, 2024
1 parent 8be0cbe commit 4312b81
Show file tree
Hide file tree
Showing 9 changed files with 1,243 additions and 951 deletions.
2,148 changes: 1,217 additions & 931 deletions composer.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions web/INSTALL.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

Please read core/INSTALL.txt for detailed installation instructions for your
Drupal website.
Read core/INSTALL.txt for detailed installation instructions for your Drupal
website.
2 changes: 1 addition & 1 deletion web/modules/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ pattern may be used to restrict modules to a specific site instance.
MORE INFORMATION
----------------

Refer to the “Developing for Drupal” section of the README.txt in the Drupal
Refer to the “Developing for Drupal” section of the README.md in the Drupal
root directory for further information on extending Drupal with custom modules.
2 changes: 1 addition & 1 deletion web/profiles/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ available to all sites during their initial site installation.
MORE INFORMATION
----------------

Refer to the "Installation profiles" section of the README.txt in the Drupal
Refer to the "Installation profiles" section of the README.md in the Drupal
root directory for further information on extending Drupal with custom profiles.
10 changes: 9 additions & 1 deletion web/robots.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,15 @@ Allow: /profiles/*.svg
Disallow: /core/
Disallow: /profiles/
# Files
Disallow: /README.txt
Disallow: /README.md
Disallow: /composer/Metapackage/README.txt
Disallow: /composer/Plugin/ProjectMessage/README.md
Disallow: /composer/Plugin/Scaffold/README.md
Disallow: /composer/Plugin/VendorHardening/README.txt
Disallow: /composer/Template/README.txt
Disallow: /modules/README.txt
Disallow: /sites/README.txt
Disallow: /themes/README.txt
Disallow: /web.config
# Paths (clean URLs)
Disallow: /admin/
Expand Down
2 changes: 2 additions & 0 deletions web/sites/default/default.services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,8 @@ parameters:
# Configure requests allowed from specific origins. Do not include trailing
# slashes with URLs.
allowedOrigins: ['*']
# Configure requests allowed from origins, matching against regex patterns.
allowedOriginsPatterns: []
# Sets the Access-Control-Expose-Headers header.
exposedHeaders: false
# Sets the Access-Control-Max-Age header.
Expand Down
20 changes: 10 additions & 10 deletions web/sites/default/default.settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@
* @code
* $databases['default']['default'] = [
* 'database' => 'databasename',
* 'username' => 'sqlusername',
* 'password' => 'sqlpassword',
* 'username' => 'sql_username',
* 'password' => 'sql_password',
* 'host' => 'localhost',
* 'port' => '3306',
* 'driver' => 'mysql',
Expand Down Expand Up @@ -194,8 +194,8 @@
* $databases['default']['default'] = [
* 'driver' => 'pgsql',
* 'database' => 'databasename',
* 'username' => 'sqlusername',
* 'password' => 'sqlpassword',
* 'username' => 'sql_username',
* 'password' => 'sql_password',
* 'host' => 'localhost',
* 'prefix' => '',
* ];
Expand All @@ -205,7 +205,7 @@
* @code
* $databases['default']['default'] = [
* 'driver' => 'sqlite',
* 'database' => '/path/to/databasefilename',
* 'database' => '/path/to/database_filename',
* ];
* @endcode
*
Expand All @@ -216,8 +216,8 @@
* 'namespace' => 'Drupal\my_module\Driver\Database\my_driver',
* 'autoload' => 'modules/my_module/src/Driver/Database/my_driver/',
* 'database' => 'databasename',
* 'username' => 'sqlusername',
* 'password' => 'sqlpassword',
* 'username' => 'sql_username',
* 'password' => 'sql_password',
* 'host' => 'localhost',
* 'prefix' => '',
* ];
Expand All @@ -231,8 +231,8 @@
* 'namespace' => 'Drupal\my_module\Driver\Database\my_driver',
* 'autoload' => 'modules/my_module/src/Driver/Database/my_driver/',
* 'database' => 'databasename',
* 'username' => 'sqlusername',
* 'password' => 'sqlpassword',
* 'username' => 'sql_username',
* 'password' => 'sql_password',
* 'host' => 'localhost',
* 'prefix' => '',
* 'dependencies' => [
Expand Down Expand Up @@ -588,7 +588,7 @@
* the output of phpinfo(). The full output can contain sensitive information
* so by default Drupal removes some sections.
*
* This behaviour can be configured by setting this variable to a different
* This behavior can be configured by setting this variable to a different
* value corresponding to the flags parameter of phpinfo().
*
* If you need to expose more information in the report - for example to debug a
Expand Down
4 changes: 0 additions & 4 deletions web/sites/example.settings.local.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,7 @@
* It is strongly recommended that you set zend.assertions=1 in the PHP.ini file
* (It cannot be changed from .htaccess or runtime) on development machines and
* to 0 or -1 in production.
*
* @see https://wiki.php.net/rfc/expectations
*/
assert_options(ASSERT_ACTIVE, TRUE);
assert_options(ASSERT_EXCEPTION, TRUE);

/**
* Enable local development services.
Expand Down
2 changes: 1 addition & 1 deletion web/themes/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ pattern may be used to restrict themes to a specific site instance.
MORE INFORMATION
-----------------

Refer to the "Appearance" section of the README.txt in the Drupal root directory
Refer to the "Appearance" section of the README.md in the Drupal root directory
for further information on customizing the appearance of Drupal with custom
themes.

0 comments on commit 4312b81

Please sign in to comment.