From d0a926c055fb1c2aae43e422563601e6af6b5067 Mon Sep 17 00:00:00 2001 From: itamair <itamair@me.com> Date: Wed, 31 May 2023 15:25:44 +0200 Subject: [PATCH] Readme.md documentation upgrade on how to properly upgrade to Drupal 10 and Geocoder 10.x (Issue #3283651 by claudiu.cristea, itamair: Drupal 10 compatibility: changing php-http/guzzle6-adapter dependency into php-http/guzzle7-adapter) --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 4b45e58e..66476877 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,19 @@ dependency since Drupal 9.4 and a requirement for Drupal 10). At the moment this branch still have incompatibilities with packages locked to php-http/guzzle6-adapter dependency (see issue #3283651). +### How to seamlessly upgrade to Drupal 10 & Geocoder 4.x ... ### + +When preparing for an upgrade to Drupal 10 we recommend that you widen your composer version constraints to allow either 3.x or 4.x. +Edit composer.json the following way: + +``` +"require": { +... +"drupal/geocoder": "^3.20 || ^4.0", +... +} +``` + # Features * Solid API based on [Geocoder PHP library](http://geocoder-php.org); * Geocode and Reverse Geocode using one or multiple Geocoder providers -- GitLab