diff --git a/.github/workflows/component.yml b/.github/workflows/component.yml index 93f2b0e15..f0de05344 100644 --- a/.github/workflows/component.yml +++ b/.github/workflows/component.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] component: [Common, Http, Plugin] name: PHP ${{ matrix.php-version }} / ${{ matrix.component }} diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 140dcd9d9..a3e886812 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -16,8 +16,6 @@ jobs: matrix: php-version: ['7.4', '8.0', '8.1'] deps: ['low', 'high'] - include: - - php-version: '7.3' name: PHP ${{ matrix.php-version }} (${{ matrix.deps }}) diff --git a/.github/workflows/provider.yml b/.github/workflows/provider.yml index 30bcb3bc6..9d55ea1c0 100644 --- a/.github/workflows/provider.yml +++ b/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] provider: - AlgoliaPlaces - ArcGISOnline @@ -74,7 +74,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4'] + php-version: ['7.4'] provider: - Geoip steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index f59480df9..4e35c25aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,44 +1,49 @@ -CHANGELOG -========= +# CHANGELOG -### 4.2.0 (2020-12-22) +## 4.3.0 (2022-07-30) -* Added support for PHP 8.0 -* Dropped support for PHP 7.2 +* Removed: Support for PHP 7.3 +* Added: Support for PHP 8.1 +* Added: GitHub Actions workflows + +## 4.2.0 (2020-12-22) + +* Removed: Support for PHP 7.2 +* Added: Support for PHP 8.0 * Changed: Upgrade to PHPUnit 9 -### 4.1.0 (2020-07-04) +## 4.1.0 (2020-07-04) -* Dropped support for PHP < 7.2 +* Removed: support for PHP < 7.2 * Added: `Coordinates::toArray` * Changed: Update namespaces * Changed: Make sure we never use a country with name AND code as null -### 4.0.0 (2017-08-01) +## 4.0.0 (2017-08-01) -* Dropped support for PHP < 7 -* Introduced `GeocodeQuery` and `ReverseQuery`. +* Removed: Support for PHP < 7 +* Introduced `GeocodeQuery` and `ReverseQuery`. * `Provider` and `Geocoder` interfaces has been updated to use query objects -* All providers are stateless and immutable. +* All providers are stateless and immutable. * Moved **all** providers to new namespaces. Previous `Geocoder\Provider\BingMaps` is now located at `Geocoder\Provider\BingMaps\BingMaps` * Added: Interface for `Geocoder\Model\AddressCollection` called `Geocoder\Collection`. Public APIs are updated to type hint for `Geocoder\GeocoderResult`. * Added: Interface for `Geocoder\Model\Address` called `Geocoder\Location`. Public APIs are updated to type hint for `Geocoder\Location`. * Added: GeoArray dumper * Added: `Collection::isEmpty` -* Changed: `Location::getCoordinates` will return null or a `Coordinates` object with coordinates data. It will never return `Coordinates` without data. -* Changed: `Location::getBounds` will return null or a `Bounds` object with coordinates data. It will never return `Bounds` without data. +* Changed: `Location::getCoordinates` will return null or a `Coordinates` object with coordinates data. It will never return `Coordinates` without data. +* Changed: `Location::getBounds` will return null or a `Bounds` object with coordinates data. It will never return `Bounds` without data. * Changed: Support for unsecure transfer protocol was removed. The providers only support HTTPS. * Changed: Using PSR-4 instead of PSR-0 for autoloading. -* Fixed: ArcGISOnline's street address should not contain city and country. +* Fixed: ArcGISOnline's street address should not contain city and country. * Removed: `AdminLevel::toString` in favor for `AdminLevel::__toString`. * Removed: `Country::toString` in favor for `Country::__toString`. * Removed: `Address::getCountryCode` in favor for `Address::getCountry()->getCode()`. * Removed: `Address::getLongitude` in favor for `Address::getCoordinates()->getLongitude()`. * Removed: `Address::getLatitude` in favor for `Address::getCoordinates()->getLatitude()`. -* Removed: `Bounds::isDefined` as it is always defined. -* Removed: The following exception was removed: `ZeroResults`, `ChainZeroResults`, `HttpError`, `UnexpectedValue` +* Removed: `Bounds::isDefined` as it is always defined. +* Removed: The following exception was removed: `ZeroResults`, `ChainZeroResults`, `HttpError`, `UnexpectedValue` -### 3.3.0 (2015-12-06) +## 3.3.0 (2015-12-06) * Added: timezone field for `FreeGeoIp` provider * Added: guess method for street and suburb @@ -46,7 +51,7 @@ CHANGELOG * Added: return ISO 3166-2 region codes for the US and the rest of the world * Fixed: `AdminLevelCollection::checkLevel()` (#468) -### 3.2.0 (2015-10-09) +## 3.2.0 (2015-10-09) * Added: add __toString() methods in AdminLevel and Country * Added: __toString to StreamInterface mock @@ -54,33 +59,32 @@ CHANGELOG * Fixed: Make sure we check for an error in the response of the Yandex provider * Fixed: emergency message "You need to specify the country and region codes." -### 3.1.0 (2015-08-13) +## 3.1.0 (2015-08-13) * Added: show more API error messages in `GoogleMaps` * Fixed: require `http-adapter` `~0.8` * Fixed: use `https` transport in Yandex provider (#431) * Updated: documentation -### 3.0.0 (2015-04-20) +## 3.0.0 (2015-04-20) * Added: Introduce a `CollectionIsEmpty` exception, thrown when `AddressCollection` is empty. (Fix #412) * Added: countrycode to Bing api calls * Added: allow locale change with chain - -### 3.0.0-alpha3 (2015-02-13) +## 3.0.0-alpha3 (2015-02-13) * Added: `LocaleTrait` to reduce code duplication * Added: introduce admin levels concept (see PR #398) * Fixed: GeoIP2 results use underscore case * Merged: branch '2.x' (see releases 2.8.1 and 2.8.2 for more details) -### 3.0.0-alpha2 (2014-12-22) +## 3.0.0-alpha2 (2014-12-22) * Added: Introduce `AddressCollection` class * Added: new documentation -### 3.0.0-alpha1 (2014-12-18) +## 3.0.0-alpha1 (2014-12-18) * Added: `using()` method now throws an exception if provider not found * Added: new Result classes (`Address`, `Bounds`, `Region`, `Country`, `County`, `Coordinates`) @@ -109,9 +113,9 @@ CHANGELOG * Moved: Baidu provider to geocoder-extra (#341) * Moved: IpGeoBase provider to geocoder-extra (#342) * Renamed: properties such as: - - city => locality - - cityDistrict => subLocality - - zipcode => postalCode + * city => locality + * cityDistrict => subLocality + * zipcode => postalCode * Refactored: dumpers (remove Interface suffix, define a new method signature) * Refactored: class names! * Refactored: all providers now implement the `Geocoder` interface @@ -125,22 +129,22 @@ CHANGELOG ## 2.x -### 2.8.2 (2015-01-07) +## 2.8.2 (2015-01-07) * Fixed: encoding issue for `maxmind` provider -### 2.8.1 (2014-12-08) +## 2.8.1 (2014-12-08) * Fixed: freegeoip `zip_code` property because of an API change -### 2.8.0 (2014-10-03) +## 2.8.0 (2014-10-03) * Added: Allow for greater flexibility in setting curl parameters by passing in an array. * Removed: GeoIP2 Omni support * Removed: Cloudmade provider. They discontinued their service Apr/2014 -### 2.7.0 (2014-09-14) ### +## 2.7.0 (2014-09-14) * Added: **new** provider: `OpenCageProvider` [geocoder.opencagedata.com](http://geocoder.opencagedata.com/) @@ -148,7 +152,7 @@ CHANGELOG * Fixed: Ensure mb `formatString` is congruent to standard `ucwords()` functionality -### 2.6.0 (2014-09-02) ### +## 2.6.0 (2014-09-02) * Added: `region` and `regionCode` to GeoIP2Provider * Added: throw `InvalidCredentialsException` with GoogleMapsBusinessProvider @@ -159,7 +163,7 @@ CHANGELOG * Removed: Google's sensor parameter * Updated: Travis-CI config, doc, tests -### 2.5.0 (2014-05-16) ### +## 2.5.0 (2014-05-16) * Added: ability to set timeouts for `CurlHttpAdapter` * Added: support for a Google Maps API key @@ -167,33 +171,33 @@ CHANGELOG * Added: test against `hhvm-nightly` on Travis-CI * Updated: documentation -### 2.4.2 (2014-01-05) ### +## 2.4.2 (2014-01-05) * Fixed: GeoIPs provider expects a single location response due to recent API changes (#283). -### 2.4.1 (2013-12-16) ### +## 2.4.1 (2013-12-16) * Fixed: MapQuestProvider now works with API keys * Fixed: ProviderInterface (bad argument name) -### 2.4.0 (2013-12-12) ### +## 2.4.0 (2013-12-12) * Added: MapQuest ApiKey required for open services * Removed: unused class constants * Removed: deprecated class that is not used anymore since 2.0.0 -### 2.3.2 (2013-11-06) ### +## 2.3.2 (2013-11-06) * Fixed: GeoIPs provider stopped working due to api changes (#267) * Fixed: installation guidelines -### 2.3.1 (2013-10-22) ### +## 2.3.1 (2013-10-22) * Fixed: GeoipProvider and MaxMindBinaryProvider now return a result set * Added: fixEncoding() method in AbstractProvider (merged from 1.7) -### 2.3.0 (2013-10-17) ### +## 2.3.0 (2013-10-17) * Added: Reintroduce OpenStreetMapsProvider for BC purpose * Fixed: Rename OpenStreetMaps => OpenStreetMap @@ -201,26 +205,26 @@ CHANGELOG `OpenStreetMapProvider` instead. * Fixed: replace extension_exists() by function_exists() for mbstring -### 2.2.0 (2013-09-16) ### +## 2.2.0 (2013-09-16) * Added: ChainNoResultException for aggregating ChainProvider exceptions. * Added: CachedResponseAdapter for the test suite + cached responses * Updated: composer installation to the current recommendation from - http://getcomposer.org/download/ + -### 2.1.0 (2013-08-27) ### +## 2.1.0 (2013-08-27) * Added: Generic NominatimProvider * Fixed: GoogleBusinessProvider "client_id" parameter back to just "client". This reverts commit 532345bbd41221d2460591844dfffb04194c66 -### 2.0.1 (2013-08-08) ### +## 2.0.1 (2013-08-08) * Fixed: tests due to data changes * Fixed: use OpenStreetMap pedestrian tag for street name if road tag is not available * Updated: replace zendframework with zend-http -### 2.0.0 (2013-07-08) ### +## 2.0.0 (2013-07-08) * Fixed: tests due to data changes * Added: more doc. Fix #242 @@ -229,22 +233,22 @@ CHANGELOG * Fixed: GoogleMapsBusinessProvider provider (`client_id`) * Refactored: providers to leverage ResultFactories - fix #232 - POTENTIAL BC BREAK -### 1.7.0 (2013-05-28) ### +## 1.7.0 (2013-05-28) * Updated: Geocoder now uses the official geoip library * Added: LocaleAwareProviderInterface -### 1.6.0 (2013-05-22) ### +## 1.6.0 (2013-05-22) * Added: API key to MapQuestProvider * Fixed: DataScienceToolkitProvider test -### 1.5.1 (2013-05-15) ### +## 1.5.1 (2013-05-15) * Fixed: BC break by reintroducing the ResultFactory class * Added: MaxMind's binary provider -### 1.5.0 (2013-05-03) ### +## 1.5.0 (2013-05-03) * Added: DefaultResultFactory and MultipleResultFactory classes - Fix #223 * Fixed: provider's tests @@ -253,7 +257,7 @@ CHANGELOG * Fixed: tests and enhanced test cover * Fixed: branch-alias (composer) -### 1.4.0 (2013-03-16) ### +## 1.4.0 (2013-03-16) * Updated: doc with an exemple of the ChainProvider * Updated: doc about result object @@ -266,7 +270,7 @@ CHANGELOG * Fixed: Yandex test * Added: TomTom Provider -### 1.3.0 (2013-03-04) ### +## 1.3.0 (2013-03-04) * Fixed: ipgeobase url * Fixed: MapQuest test @@ -278,7 +282,7 @@ CHANGELOG * Fixed: FreeGeoIp provider's tests * Updated: documentation about Geocoder::using() -### 1.2.1 (2013-02-03) ### +## 1.2.1 (2013-02-03) * Updated: documentation - Google Maps Business and MaxMind providers * Added: SSL support to Google Maps Business provider + test @@ -299,7 +303,7 @@ CHANGELOG * Fixed: Yandex provider's tests * Add a ResultFactory to easily create ResultInterface instances -### 1.2.0 (2013-01-15) ### +## 1.2.0 (2013-01-15) * Fix SocketHttpAdapter which did not take care of query string * Fix tests/CS @@ -309,12 +313,12 @@ CHANGELOG * Fix response processing in GeoIPsProvider * Added exception for status code = OVER_QUERY_LIMIT -### 1.1.6 (2013-01-08) ### +## 1.1.6 (2013-01-08) * Restore OIORestProvider tests - fix #169 * Skip OIORest tests -### 1.1.5 (2012-12-29) ### +## 1.1.5 (2012-12-29) * Add PHP 5.5 to travis-ci config * Correct property reference. @@ -324,7 +328,7 @@ CHANGELOG * Throws InvalidCredentialsException on invalid api key + test * Added UnsupportedException to ProviderInterface -### 1.1.4 (2012-12-04) ### +## 1.1.4 (2012-12-04) * Fixed indentation in OIORestProvider * Added countyCode to the Geocoded result object for county short name @@ -333,7 +337,7 @@ CHANGELOG * fix code inspection * make adapter and locale mutable within provider -### 1.1.3 (2012-11-17) ### +## 1.1.3 (2012-11-17) * Replace urlencode() by rawurlencode() in GoogleMapsProvider * Removed redundant if statement @@ -352,7 +356,7 @@ CHANGELOG * Use exception interface to respect convention * Issue #81: Added Google Maps for Business provider -### 1.1.2 (2012-11-13) ### +## 1.1.2 (2012-11-13) * Removed useless contructor * Use short class name instead of FQCN @@ -377,7 +381,7 @@ CHANGELOG * Fixed: tests should only use cURL as HttpAdapter * Fixed: casts in GeocoderUsProvider -### 1.1.1 (2012-10-23) ### +## 1.1.1 (2012-10-23) * Add more tests thanks to Antoine Corcy (@toin0u) * Updated: README.md - need cURL to run unit tests @@ -391,7 +395,7 @@ CHANGELOG * Fixed: tests * Updated: providers tests getName() -### 1.1.0 (2012-10-16) ### +## 1.1.0 (2012-10-16) * Remove useless use statements * fix tests due to a change in the exception message @@ -418,8 +422,7 @@ CHANGELOG * Added: IPv6 control to providers * Added: Add filter_var checks on Address based only providers - BC BREAK - -### 1.0.x ### +## 1.0.x The most stable version of the Geocoder `1.0.x` versions is **1.0.14** (2012-10-15). If you don't use it yet, it's recommended to upgrade. There won't diff --git a/composer.json b/composer.json index 07081360a..0162835d4 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "igorw/get-in": "^1.0", "php-http/client-implementation": "^1.0", "php-http/discovery": "^1.4", diff --git a/src/Common/.github/workflows/component.yml b/src/Common/.github/workflows/component.yml index be8904859..93d748252 100644 --- a/src/Common/.github/workflows/component.yml +++ b/src/Common/.github/workflows/component.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Common/composer.json b/src/Common/composer.json index 1101685c5..dbacc8ee3 100644 --- a/src/Common/composer.json +++ b/src/Common/composer.json @@ -17,7 +17,7 @@ } ], "require": { - "php": "^7.3 || ^8.0" + "php": "^7.4 || ^8.0" }, "require-dev": { "nyholm/nsa": "^1.1", diff --git a/src/Http/.github/workflows/component.yml b/src/Http/.github/workflows/component.yml index be8904859..93d748252 100644 --- a/src/Http/.github/workflows/component.yml +++ b/src/Http/.github/workflows/component.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Http/composer.json b/src/Http/composer.json index 24803a09a..0dd7e7254 100644 --- a/src/Http/composer.json +++ b/src/Http/composer.json @@ -14,7 +14,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "php-http/client-implementation": "^1.0", "php-http/discovery": "^1.6", "php-http/httplug": "^1.0 || ^2.0", diff --git a/src/Plugin/.github/workflows/component.yml b/src/Plugin/.github/workflows/component.yml index be8904859..93d748252 100644 --- a/src/Plugin/.github/workflows/component.yml +++ b/src/Plugin/.github/workflows/component.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Plugin/composer.json b/src/Plugin/composer.json index 358cd16e8..b8f92e7d1 100644 --- a/src/Plugin/composer.json +++ b/src/Plugin/composer.json @@ -14,7 +14,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "php-http/promise": "^1.0", "psr/log": "^1.0|^2.0|^3.0", "psr/simple-cache": "^1.0|^2.0|^3.0", diff --git a/src/Provider/AlgoliaPlaces/.github/workflows/provider.yml b/src/Provider/AlgoliaPlaces/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/AlgoliaPlaces/.github/workflows/provider.yml +++ b/src/Provider/AlgoliaPlaces/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/AlgoliaPlaces/composer.json b/src/Provider/AlgoliaPlaces/composer.json index 9ada77c68..332574557 100644 --- a/src/Provider/AlgoliaPlaces/composer.json +++ b/src/Provider/AlgoliaPlaces/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "ext-json": "*", "geocoder-php/common-http": "^4.1", "willdurand/geocoder": "^4.0" diff --git a/src/Provider/ArcGISOnline/.github/workflows/provider.yml b/src/Provider/ArcGISOnline/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/ArcGISOnline/.github/workflows/provider.yml +++ b/src/Provider/ArcGISOnline/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/ArcGISOnline/composer.json b/src/Provider/ArcGISOnline/composer.json index 9811f63d3..7efc0271f 100644 --- a/src/Provider/ArcGISOnline/composer.json +++ b/src/Provider/ArcGISOnline/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/AzureMaps/.github/workflows/provider.yml b/src/Provider/AzureMaps/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/AzureMaps/.github/workflows/provider.yml +++ b/src/Provider/AzureMaps/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/AzureMaps/composer.json b/src/Provider/AzureMaps/composer.json index 34bf21156..93f5ea337 100644 --- a/src/Provider/AzureMaps/composer.json +++ b/src/Provider/AzureMaps/composer.json @@ -11,7 +11,7 @@ ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/BingMaps/.github/workflows/provider.yml b/src/Provider/BingMaps/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/BingMaps/.github/workflows/provider.yml +++ b/src/Provider/BingMaps/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/BingMaps/composer.json b/src/Provider/BingMaps/composer.json index a220e4bea..acfc63b4b 100644 --- a/src/Provider/BingMaps/composer.json +++ b/src/Provider/BingMaps/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/Cache/.github/workflows/provider.yml b/src/Provider/Cache/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/Cache/.github/workflows/provider.yml +++ b/src/Provider/Cache/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/Cache/composer.json b/src/Provider/Cache/composer.json index 7e72f07c8..8414972c6 100644 --- a/src/Provider/Cache/composer.json +++ b/src/Provider/Cache/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "psr/simple-cache": "^1.0|^2.0|^3.0", "willdurand/geocoder": "^4.0.0" }, diff --git a/src/Provider/Chain/.github/workflows/provider.yml b/src/Provider/Chain/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/Chain/.github/workflows/provider.yml +++ b/src/Provider/Chain/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/Chain/composer.json b/src/Provider/Chain/composer.json index fec6ee8cf..5c54cf97f 100644 --- a/src/Provider/Chain/composer.json +++ b/src/Provider/Chain/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "psr/log": "^1.0|^2.0|^3.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/FreeGeoIp/.github/workflows/provider.yml b/src/Provider/FreeGeoIp/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/FreeGeoIp/.github/workflows/provider.yml +++ b/src/Provider/FreeGeoIp/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/FreeGeoIp/composer.json b/src/Provider/FreeGeoIp/composer.json index 59a3c9e9e..7ca2e86db 100644 --- a/src/Provider/FreeGeoIp/composer.json +++ b/src/Provider/FreeGeoIp/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.1", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/GeoIP2/.github/workflows/provider.yml b/src/Provider/GeoIP2/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/GeoIP2/.github/workflows/provider.yml +++ b/src/Provider/GeoIP2/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/GeoIP2/composer.json b/src/Provider/GeoIP2/composer.json index 9d6fb24db..e1c57016e 100644 --- a/src/Provider/GeoIP2/composer.json +++ b/src/Provider/GeoIP2/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geoip2/geoip2": "~2.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/GeoIPs/composer.json b/src/Provider/GeoIPs/composer.json index 53b4dda27..e6eb76655 100644 --- a/src/Provider/GeoIPs/composer.json +++ b/src/Provider/GeoIPs/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.1" }, diff --git a/src/Provider/GeoPlugin/.github/workflows/provider.yml b/src/Provider/GeoPlugin/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/GeoPlugin/.github/workflows/provider.yml +++ b/src/Provider/GeoPlugin/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/GeoPlugin/composer.json b/src/Provider/GeoPlugin/composer.json index d35b7bcce..e177dfa1f 100644 --- a/src/Provider/GeoPlugin/composer.json +++ b/src/Provider/GeoPlugin/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "igorw/get-in": "^1.0", "willdurand/geocoder": "^4.0" diff --git a/src/Provider/GeocodeEarth/.github/workflows/provider.yml b/src/Provider/GeocodeEarth/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/GeocodeEarth/.github/workflows/provider.yml +++ b/src/Provider/GeocodeEarth/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/GeocodeEarth/composer.json b/src/Provider/GeocodeEarth/composer.json index 2db3132f2..f3a1db236 100644 --- a/src/Provider/GeocodeEarth/composer.json +++ b/src/Provider/GeocodeEarth/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "geocoder-php/pelias-provider": "^1.0", "willdurand/geocoder": "^4.0" diff --git a/src/Provider/Geoip/.github/workflows/provider.yml b/src/Provider/Geoip/.github/workflows/provider.yml index 62c4eb7aa..eab2bc571 100644 --- a/src/Provider/Geoip/.github/workflows/provider.yml +++ b/src/Provider/Geoip/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/Geoip/composer.json b/src/Provider/Geoip/composer.json index 85fb1f9ac..e5d90e259 100644 --- a/src/Provider/Geoip/composer.json +++ b/src/Provider/Geoip/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "ext-geoip": "*", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/Geonames/.github/workflows/provider.yml b/src/Provider/Geonames/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/Geonames/.github/workflows/provider.yml +++ b/src/Provider/Geonames/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/Geonames/composer.json b/src/Provider/Geonames/composer.json index 088afdc07..3b44afec2 100644 --- a/src/Provider/Geonames/composer.json +++ b/src/Provider/Geonames/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/GoogleMaps/.github/workflows/provider.yml b/src/Provider/GoogleMaps/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/GoogleMaps/.github/workflows/provider.yml +++ b/src/Provider/GoogleMaps/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/GoogleMaps/composer.json b/src/Provider/GoogleMaps/composer.json index 01bbaa69c..f631cf938 100644 --- a/src/Provider/GoogleMaps/composer.json +++ b/src/Provider/GoogleMaps/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/GoogleMapsPlaces/.github/workflows/provider.yml b/src/Provider/GoogleMapsPlaces/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/GoogleMapsPlaces/.github/workflows/provider.yml +++ b/src/Provider/GoogleMapsPlaces/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/GoogleMapsPlaces/composer.json b/src/Provider/GoogleMapsPlaces/composer.json index 50f922f31..24544105c 100644 --- a/src/Provider/GoogleMapsPlaces/composer.json +++ b/src/Provider/GoogleMapsPlaces/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/GraphHopper/.github/workflows/provider.yml b/src/Provider/GraphHopper/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/GraphHopper/.github/workflows/provider.yml +++ b/src/Provider/GraphHopper/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/GraphHopper/composer.json b/src/Provider/GraphHopper/composer.json index 11d5f39a0..8ef834f86 100644 --- a/src/Provider/GraphHopper/composer.json +++ b/src/Provider/GraphHopper/composer.json @@ -6,7 +6,7 @@ "homepage": "http://geocoder-php.org/Geocoder/", "license": "MIT", "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/Here/.github/workflows/provider.yml b/src/Provider/Here/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/Here/.github/workflows/provider.yml +++ b/src/Provider/Here/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/Here/composer.json b/src/Provider/Here/composer.json index 1608da52d..41503b9d3 100644 --- a/src/Provider/Here/composer.json +++ b/src/Provider/Here/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/HostIp/.github/workflows/provider.yml b/src/Provider/HostIp/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/HostIp/.github/workflows/provider.yml +++ b/src/Provider/HostIp/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/HostIp/composer.json b/src/Provider/HostIp/composer.json index 399da5f45..062750fd6 100644 --- a/src/Provider/HostIp/composer.json +++ b/src/Provider/HostIp/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/IP2Location/.github/workflows/provider.yml b/src/Provider/IP2Location/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/IP2Location/.github/workflows/provider.yml +++ b/src/Provider/IP2Location/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/IP2Location/composer.json b/src/Provider/IP2Location/composer.json index d7d9d2759..a7d468444 100644 --- a/src/Provider/IP2Location/composer.json +++ b/src/Provider/IP2Location/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/IP2LocationBinary/.github/workflows/provider.yml b/src/Provider/IP2LocationBinary/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/IP2LocationBinary/.github/workflows/provider.yml +++ b/src/Provider/IP2LocationBinary/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/IP2LocationBinary/composer.json b/src/Provider/IP2LocationBinary/composer.json index 31c0c4182..02ee03d24 100644 --- a/src/Provider/IP2LocationBinary/composer.json +++ b/src/Provider/IP2LocationBinary/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "ip2location/ip2location-php": "^8.1.1", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/IpInfo/.github/workflows/provider.yml b/src/Provider/IpInfo/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/IpInfo/.github/workflows/provider.yml +++ b/src/Provider/IpInfo/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/IpInfo/composer.json b/src/Provider/IpInfo/composer.json index 7a1eb28fc..bded6adc5 100644 --- a/src/Provider/IpInfo/composer.json +++ b/src/Provider/IpInfo/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/IpInfoDb/.github/workflows/provider.yml b/src/Provider/IpInfoDb/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/IpInfoDb/.github/workflows/provider.yml +++ b/src/Provider/IpInfoDb/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/IpInfoDb/composer.json b/src/Provider/IpInfoDb/composer.json index ace3ab15a..15f936549 100644 --- a/src/Provider/IpInfoDb/composer.json +++ b/src/Provider/IpInfoDb/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/Ipstack/.github/workflows/provider.yml b/src/Provider/Ipstack/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/Ipstack/.github/workflows/provider.yml +++ b/src/Provider/Ipstack/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/Ipstack/composer.json b/src/Provider/Ipstack/composer.json index a7083280d..b77018d88 100644 --- a/src/Provider/Ipstack/composer.json +++ b/src/Provider/Ipstack/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/LocationIQ/.github/workflows/provider.yml b/src/Provider/LocationIQ/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/LocationIQ/.github/workflows/provider.yml +++ b/src/Provider/LocationIQ/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/LocationIQ/composer.json b/src/Provider/LocationIQ/composer.json index c606e8c4c..6cce66c26 100644 --- a/src/Provider/LocationIQ/composer.json +++ b/src/Provider/LocationIQ/composer.json @@ -17,7 +17,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/MapQuest/.github/workflows/provider.yml b/src/Provider/MapQuest/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/MapQuest/.github/workflows/provider.yml +++ b/src/Provider/MapQuest/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/MapQuest/composer.json b/src/Provider/MapQuest/composer.json index 9fd76e3a9..f5d966102 100644 --- a/src/Provider/MapQuest/composer.json +++ b/src/Provider/MapQuest/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/MapTiler/.github/workflows/provider.yml b/src/Provider/MapTiler/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/MapTiler/.github/workflows/provider.yml +++ b/src/Provider/MapTiler/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/MapTiler/composer.json b/src/Provider/MapTiler/composer.json index 82e987874..215bf9715 100644 --- a/src/Provider/MapTiler/composer.json +++ b/src/Provider/MapTiler/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.1", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/Mapbox/.github/workflows/provider.yml b/src/Provider/Mapbox/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/Mapbox/.github/workflows/provider.yml +++ b/src/Provider/Mapbox/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/Mapbox/composer.json b/src/Provider/Mapbox/composer.json index c847ff2d0..95ff77208 100644 --- a/src/Provider/Mapbox/composer.json +++ b/src/Provider/Mapbox/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/Mapzen/composer.json b/src/Provider/Mapzen/composer.json index 484d28da6..fdb36f8ae 100644 --- a/src/Provider/Mapzen/composer.json +++ b/src/Provider/Mapzen/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/MaxMind/.github/workflows/provider.yml b/src/Provider/MaxMind/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/MaxMind/.github/workflows/provider.yml +++ b/src/Provider/MaxMind/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/MaxMind/composer.json b/src/Provider/MaxMind/composer.json index be0de718d..d2560c050 100644 --- a/src/Provider/MaxMind/composer.json +++ b/src/Provider/MaxMind/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "igorw/get-in": "^1.0", "willdurand/geocoder": "^4.1" }, diff --git a/src/Provider/MaxMindBinary/.github/workflows/provider.yml b/src/Provider/MaxMindBinary/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/MaxMindBinary/.github/workflows/provider.yml +++ b/src/Provider/MaxMindBinary/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/MaxMindBinary/composer.json b/src/Provider/MaxMindBinary/composer.json index f95ac0adf..2af59bcee 100644 --- a/src/Provider/MaxMindBinary/composer.json +++ b/src/Provider/MaxMindBinary/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geoip/geoip": "^1.17", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/Nominatim/.github/workflows/provider.yml b/src/Provider/Nominatim/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/Nominatim/.github/workflows/provider.yml +++ b/src/Provider/Nominatim/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/Nominatim/composer.json b/src/Provider/Nominatim/composer.json index 2b27f4d93..d97968ce4 100644 --- a/src/Provider/Nominatim/composer.json +++ b/src/Provider/Nominatim/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.1", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/OpenCage/.github/workflows/provider.yml b/src/Provider/OpenCage/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/OpenCage/.github/workflows/provider.yml +++ b/src/Provider/OpenCage/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/OpenCage/composer.json b/src/Provider/OpenCage/composer.json index 32292e438..5064aa1b4 100644 --- a/src/Provider/OpenCage/composer.json +++ b/src/Provider/OpenCage/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/OpenRouteService/.github/workflows/provider.yml b/src/Provider/OpenRouteService/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/OpenRouteService/.github/workflows/provider.yml +++ b/src/Provider/OpenRouteService/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/OpenRouteService/composer.json b/src/Provider/OpenRouteService/composer.json index e01cdd20c..468735a7d 100644 --- a/src/Provider/OpenRouteService/composer.json +++ b/src/Provider/OpenRouteService/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "geocoder-php/pelias-provider": "^1.0", "willdurand/geocoder": "^4.0" diff --git a/src/Provider/Pelias/.github/workflows/provider.yml b/src/Provider/Pelias/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/Pelias/.github/workflows/provider.yml +++ b/src/Provider/Pelias/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/Pelias/composer.json b/src/Provider/Pelias/composer.json index 186b6d4be..a6b0fa067 100644 --- a/src/Provider/Pelias/composer.json +++ b/src/Provider/Pelias/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/Photon/.github/workflows/provider.yml b/src/Provider/Photon/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/Photon/.github/workflows/provider.yml +++ b/src/Provider/Photon/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/Photon/composer.json b/src/Provider/Photon/composer.json index 88efd4851..e562734b3 100644 --- a/src/Provider/Photon/composer.json +++ b/src/Provider/Photon/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.1", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/PickPoint/.github/workflows/provider.yml b/src/Provider/PickPoint/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/PickPoint/.github/workflows/provider.yml +++ b/src/Provider/PickPoint/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/PickPoint/composer.json b/src/Provider/PickPoint/composer.json index b6da4ae22..1e89e1b15 100644 --- a/src/Provider/PickPoint/composer.json +++ b/src/Provider/PickPoint/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/TomTom/.github/workflows/provider.yml b/src/Provider/TomTom/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/TomTom/.github/workflows/provider.yml +++ b/src/Provider/TomTom/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/TomTom/composer.json b/src/Provider/TomTom/composer.json index adb948f00..71eb7edda 100644 --- a/src/Provider/TomTom/composer.json +++ b/src/Provider/TomTom/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" }, diff --git a/src/Provider/Yandex/.github/workflows/provider.yml b/src/Provider/Yandex/.github/workflows/provider.yml index efd8c9ec8..93c21df6f 100644 --- a/src/Provider/Yandex/.github/workflows/provider.yml +++ b/src/Provider/Yandex/.github/workflows/provider.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.3', '7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 - name: Use PHP ${{ matrix.php-version }} diff --git a/src/Provider/Yandex/composer.json b/src/Provider/Yandex/composer.json index 65c086086..367ec3cc9 100644 --- a/src/Provider/Yandex/composer.json +++ b/src/Provider/Yandex/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.4 || ^8.0", "geocoder-php/common-http": "^4.0", "willdurand/geocoder": "^4.0" },