From d083855fa087c412e272fe43fe749178192f4829 Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Mon, 16 Oct 2023 23:58:49 +0200 Subject: [PATCH] Require PHP 8.1 --- .github/workflows/ci.yml | 1 - CHANGELOG.md | 6 ++++++ README.md | 4 +++- composer.json | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da7a73c..76cee33 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,6 @@ jobs: strategy: matrix: php-version: - - "8.0" - "8.1" - "8.2" - "8.3" diff --git a/CHANGELOG.md b/CHANGELOG.md index 3398135..358a3e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## UNRELEASED (0.10.0) + +💥 **Breaking changes** + +**Minimum PHP version is now `8.1`.** + ## [0.9.0](https://github.com/brick/geo/releases/tag/0.9.0) - 2022-11-22 💥 **Breaking changes** diff --git a/README.md b/README.md index f7abca8..48bee24 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,9 @@ together with implementations that delegate these operations to a third-party GI Requirements and installation ----------------------------- -This library requires PHP 8. For PHP 7.4, you can use version `0.7`. +This library requires PHP 8.1. +For PHP 8.0, you can use version `0.9`. +For PHP 7.4, you can use version `0.7`. Install the library with [Composer](https://getcomposer.org/): diff --git a/composer.json b/composer.json index 6decff4..af08c0f 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ ], "license": "MIT", "require": { - "php": "^8.0" + "php": "^8.1" }, "require-dev": { "ext-pdo": "*",