diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 1856ba688..15110bf57 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - php: [7.2, 7.3, 7.4, 8.0] + php: [7.3, 7.4, 8.0] solr: [7, 8] mode: [cloud, server] diff --git a/CHANGELOG.md b/CHANGELOG.md index 209353fd3..a2afd52ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Helper::rangeQuery() detects point values without parameter to turn off escaping ### Removed - +- PHP 7.2 support ## [6.0.4] ### Added diff --git a/README.md b/README.md index 10d3dee06..eac49f7c0 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Please see the [docs](http://solarium.readthedocs.io/en/stable/) for a more deta ## Requirements -Solarium 6.x only supports PHP 7.2 and up. +Solarium 6.x only supports PHP 7.3 and up. It's highly recommended to have cURL enabled in your PHP environment. However if you don't have cURL available you can switch from using cURL (the default) to a pure PHP based HTTP client adapter which works for the essential stuff but diff --git a/composer.json b/composer.json index 2e40cc9aa..0db923aa1 100755 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.2 || ^8.0", + "php": "^7.3 || ^8.0", "ext-json": "*", "psr/event-dispatcher": "^1.0", "psr/http-client": "^1.0", diff --git a/docs/getting-started.md b/docs/getting-started.md index 58a3e5d8c..3ccf6e83c 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -9,7 +9,7 @@ Installation ### Requirements -For installing Solarium a minimal PHP version 7.2 is required. +For installing Solarium a minimal PHP version 7.3 is required. There is no Solr version requirement. But it's highly recommended that you use at least 7.7. All older versions are EOL.