From 6798f7aceacd51cb30990e357474abff6982cd4b Mon Sep 17 00:00:00 2001 From: Alexandre D'Eschambeault Date: Tue, 26 Mar 2024 08:58:30 -0400 Subject: [PATCH] build(deps): drop php 8.0 support --- .github/workflows/tests.yml | 4 +--- composer.json | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8fcb2f1..f53112c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,15 +9,13 @@ jobs: strategy: fail-fast: true matrix: - php: [8.0, 8.1, 8.2] + php: [8.1, 8.2] laravel: [9.*, 10.*] dependency-version: [prefer-lowest, prefer-stable] exclude: - php: 8.2 laravel: 9.* dependency-version: prefer-lowest - - php: 8.0 - laravel: 10.* include: - laravel: 9.* testbench: 7.* diff --git a/composer.json b/composer.json index 7b7549d..e2c5ff5 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "source": "https://github.com/eXolnet/laravel-bento" }, "require": { - "php": "^8.0", + "php": "^8.1", "illuminate/contracts": "^9.0|^10.0", "illuminate/http": "^9.0|^10.0", "illuminate/support": "^9.0|^10.0",