Browse Source

updated core to 8.6.17

Bachir Soussi Chiadmi 4 years ago
parent
commit
c9f5886fc8
5 changed files with 781 additions and 101 deletions
  1. 2 2
      composer.json
  2. 743 90
      composer.lock
  3. 5 4
      web/sites/development.services.yml
  4. 27 3
      web/sites/example.settings.local.php
  5. 4 2
      web/sites/example.sites.php

+ 2 - 2
composer.json

@@ -37,7 +37,7 @@
         "drupal/config_ignore": "2.1.0",
         "drupal/console": "^1.0.2",
         "drupal/context": "4.0.0-beta2",
-        "drupal/core": "^8.6.0",
+        "drupal/core": "8.6.17",
         "drupal/ctools": "3.2.0",
         "drupal/date_range_formatter": "3.1.0",
         "drupal/devel": "2.1",
@@ -74,13 +74,13 @@
         "drush/drush": "^9.0.0",
         "oomphinc/composer-installers-extender": "^1.1",
         "vlucas/phpdotenv": "^2.4",
+        "webflo/drupal-core-require-dev": "8.6.17",
         "webflo/drupal-core-strict": "^8.0",
         "webflo/drupal-finder": "^1.0.0",
         "webmozart/path-util": "^2.3",
         "zaporylie/composer-drupal-optimizations": "^1.0"
     },
     "require-dev": {
-        "webflo/drupal-core-require-dev": "^8.6.0"
     },
     "conflict": {
         "drupal/drupal": "*"

File diff suppressed because it is too large
+ 743 - 90
composer.lock


+ 5 - 4
web/sites/development.services.yml

@@ -2,12 +2,13 @@
 #
 # To activate this feature, follow the instructions at the top of the
 # 'example.settings.local.php' file, which sits next to this file.
-services:
-  cache.backend.null:
-    class: Drupal\Core\Cache\NullBackendFactory
-
 parameters:
+  http.response.debug_cacheability_headers: true
   twig.config:
     debug: true
     auto_reload: true
     cache: false
+
+services:
+  cache.backend.null:
+    class: Drupal\Core\Cache\NullBackendFactory

+ 27 - 3
web/sites/example.settings.local.php

@@ -1,5 +1,7 @@
 <?php
 
+// @codingStandardsIgnoreFile
+
 /**
  * @file
  * Local development override configuration feature.
@@ -53,7 +55,7 @@ $config['system.performance']['css']['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
  * 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
  * 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';
 
+/**
+ * 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.
  *
@@ -82,7 +106,7 @@ $config['system.performance']['js']['preprocess'] = FALSE;
  * During development it can be useful to install test extensions for debugging
  * purposes.
  */
-$settings['extension_discovery_scan_tests'] = TRUE;
+# $settings['extension_discovery_scan_tests'] = TRUE;
 
 /**
  * Enable access to rebuild.php.

+ 4 - 2
web/sites/example.sites.php

@@ -1,5 +1,7 @@
 <?php
 
+// @codingStandardsIgnoreFile
+
 /**
  * @file
  * 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
  * directory sites/example.com, the array should be defined as:
  * @code
- * $sites = array(
+ * $sites = [
  *   '8080.www.drupal.org.mysite.test' => 'example.com',
- * );
+ * ];
  * @endcode
  * 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

Some files were not shown because too many files changed in this diff