updated core to 8.6.17
This commit is contained in:
+2
-2
@@ -37,7 +37,7 @@
|
|||||||
"drupal/config_ignore": "2.1.0",
|
"drupal/config_ignore": "2.1.0",
|
||||||
"drupal/console": "^1.0.2",
|
"drupal/console": "^1.0.2",
|
||||||
"drupal/context": "4.0.0-beta2",
|
"drupal/context": "4.0.0-beta2",
|
||||||
"drupal/core": "^8.6.0",
|
"drupal/core": "8.6.17",
|
||||||
"drupal/ctools": "3.2.0",
|
"drupal/ctools": "3.2.0",
|
||||||
"drupal/date_range_formatter": "3.1.0",
|
"drupal/date_range_formatter": "3.1.0",
|
||||||
"drupal/devel": "2.1",
|
"drupal/devel": "2.1",
|
||||||
@@ -74,13 +74,13 @@
|
|||||||
"drush/drush": "^9.0.0",
|
"drush/drush": "^9.0.0",
|
||||||
"oomphinc/composer-installers-extender": "^1.1",
|
"oomphinc/composer-installers-extender": "^1.1",
|
||||||
"vlucas/phpdotenv": "^2.4",
|
"vlucas/phpdotenv": "^2.4",
|
||||||
|
"webflo/drupal-core-require-dev": "8.6.17",
|
||||||
"webflo/drupal-core-strict": "^8.0",
|
"webflo/drupal-core-strict": "^8.0",
|
||||||
"webflo/drupal-finder": "^1.0.0",
|
"webflo/drupal-finder": "^1.0.0",
|
||||||
"webmozart/path-util": "^2.3",
|
"webmozart/path-util": "^2.3",
|
||||||
"zaporylie/composer-drupal-optimizations": "^1.0"
|
"zaporylie/composer-drupal-optimizations": "^1.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"webflo/drupal-core-require-dev": "^8.6.0"
|
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"drupal/drupal": "*"
|
"drupal/drupal": "*"
|
||||||
|
|||||||
Generated
+3292
-3283
File diff suppressed because it is too large
Load Diff
@@ -2,12 +2,13 @@
|
|||||||
#
|
#
|
||||||
# To activate this feature, follow the instructions at the top of the
|
# To activate this feature, follow the instructions at the top of the
|
||||||
# 'example.settings.local.php' file, which sits next to this file.
|
# 'example.settings.local.php' file, which sits next to this file.
|
||||||
services:
|
|
||||||
cache.backend.null:
|
|
||||||
class: Drupal\Core\Cache\NullBackendFactory
|
|
||||||
|
|
||||||
parameters:
|
parameters:
|
||||||
|
http.response.debug_cacheability_headers: true
|
||||||
twig.config:
|
twig.config:
|
||||||
debug: true
|
debug: true
|
||||||
auto_reload: true
|
auto_reload: true
|
||||||
cache: false
|
cache: false
|
||||||
|
|
||||||
|
services:
|
||||||
|
cache.backend.null:
|
||||||
|
class: Drupal\Core\Cache\NullBackendFactory
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
// @codingStandardsIgnoreFile
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
* Local development override configuration feature.
|
* Local development override configuration feature.
|
||||||
@@ -53,7 +55,7 @@ $config['system.performance']['css']['preprocess'] = FALSE;
|
|||||||
$config['system.performance']['js']['preprocess'] = FALSE;
|
$config['system.performance']['js']['preprocess'] = FALSE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Disable the render cache (this includes the page cache).
|
* Disable the render cache.
|
||||||
*
|
*
|
||||||
* Note: you should test with the render cache enabled, to ensure the correct
|
* Note: you should test with the render cache enabled, to ensure the correct
|
||||||
* cacheability metadata is present. However, in the early stages of
|
* cacheability metadata is present. However, in the early stages of
|
||||||
@@ -62,10 +64,32 @@ $config['system.performance']['js']['preprocess'] = FALSE;
|
|||||||
* This setting disables the render cache by using the Null cache back-end
|
* This setting disables the render cache by using the Null cache back-end
|
||||||
* defined by the development.services.yml file above.
|
* defined by the development.services.yml file above.
|
||||||
*
|
*
|
||||||
* Do not use this setting until after the site is installed.
|
* Only use this setting once the site has been installed.
|
||||||
*/
|
*/
|
||||||
# $settings['cache']['bins']['render'] = 'cache.backend.null';
|
# $settings['cache']['bins']['render'] = 'cache.backend.null';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disable caching for migrations.
|
||||||
|
*
|
||||||
|
* Uncomment the code below to only store migrations in memory and not in the
|
||||||
|
* database. This makes it easier to develop custom migrations.
|
||||||
|
*/
|
||||||
|
# $settings['cache']['bins']['discovery_migration'] = 'cache.backend.memory';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disable Internal Page Cache.
|
||||||
|
*
|
||||||
|
* Note: you should test with Internal Page Cache enabled, to ensure the correct
|
||||||
|
* cacheability metadata is present. However, in the early stages of
|
||||||
|
* development, you may want to disable it.
|
||||||
|
*
|
||||||
|
* This setting disables the page cache by using the Null cache back-end
|
||||||
|
* defined by the development.services.yml file above.
|
||||||
|
*
|
||||||
|
* Only use this setting once the site has been installed.
|
||||||
|
*/
|
||||||
|
# $settings['cache']['bins']['page'] = 'cache.backend.null';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Disable Dynamic Page Cache.
|
* Disable Dynamic Page Cache.
|
||||||
*
|
*
|
||||||
@@ -82,7 +106,7 @@ $config['system.performance']['js']['preprocess'] = FALSE;
|
|||||||
* During development it can be useful to install test extensions for debugging
|
* During development it can be useful to install test extensions for debugging
|
||||||
* purposes.
|
* purposes.
|
||||||
*/
|
*/
|
||||||
$settings['extension_discovery_scan_tests'] = TRUE;
|
# $settings['extension_discovery_scan_tests'] = TRUE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable access to rebuild.php.
|
* Enable access to rebuild.php.
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
// @codingStandardsIgnoreFile
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
* Configuration file for multi-site support and directory aliasing feature.
|
* Configuration file for multi-site support and directory aliasing feature.
|
||||||
@@ -24,9 +26,9 @@
|
|||||||
* example, to map https://www.drupal.org:8080/mysite/test to the configuration
|
* example, to map https://www.drupal.org:8080/mysite/test to the configuration
|
||||||
* directory sites/example.com, the array should be defined as:
|
* directory sites/example.com, the array should be defined as:
|
||||||
* @code
|
* @code
|
||||||
* $sites = array(
|
* $sites = [
|
||||||
* '8080.www.drupal.org.mysite.test' => 'example.com',
|
* '8080.www.drupal.org.mysite.test' => 'example.com',
|
||||||
* );
|
* ];
|
||||||
* @endcode
|
* @endcode
|
||||||
* The URL, https://www.drupal.org:8080/mysite/test/, could be a symbolic link
|
* The URL, https://www.drupal.org:8080/mysite/test/, could be a symbolic link
|
||||||
* or an Apache Alias directive that points to the Drupal root containing
|
* or an Apache Alias directive that points to the Drupal root containing
|
||||||
|
|||||||
Reference in New Issue
Block a user