Skip to content

Commit

Permalink
drop support for php 7.2 (#903)
Browse files Browse the repository at this point in the history
* drop support for php 7.2

php 7.2 eol was november 30th 2020

* updated readme

changed the readme.md to reflect minimal requirements

* updated changelog

mentioned dropping support for php 7.2

* modified getting started

Co-authored-by: Markus Kalkbrenner <[email protected]>
  • Loading branch information
wickedOne and mkalkbrenner authored Feb 5, 2021
1 parent e81cb51 commit 07083cc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 07083cc

Please sign in to comment.