From 3c3c2eb249b7954db66004c712f3ff3dee7817a0 Mon Sep 17 00:00:00 2001 From: Jorijn Schrijvershof Date: Fri, 28 Apr 2023 11:58:07 +0200 Subject: [PATCH] add php 8.2, mention L10 in changelog (#44) * add php 8.2, mention L10 in changelog * fixed a typo * exclude L10 in combination with PHP 8.0 * update min. required php version --- .github/workflows/tests.yaml | 10 +++++++++- CHANGELOG.md | 3 +++ composer.json | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index a919ed1..9064002 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -10,16 +10,24 @@ jobs: strategy: fail-fast: false matrix: - php: [7.4, 8.0, 8.1] + php: [7.4, 8.0, 8.1, 8.2] laravel: [6.*, 7.*, 8.*, 9.*, 10.*] exclude: # excludes unsupported combinations + - php: 8.0 + laravel: 10.* + - php: 7.4 + laravel: 10.* - php: 7.4 laravel: 9.* - php: 8.1 laravel: 6.* - php: 8.1 laravel: 7.* + - php: 8.2 + laravel: 6.* + - php: 8.2 + laravel: 7.* name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} diff --git a/CHANGELOG.md b/CHANGELOG.md index c236f9e..7ade07a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog for Laravel Security Checker +## v2.4.0 (2023-04-28) +* add support for Laravel 10, PHP 8.2 + ## v2.3.0 (2022-03-02) * add support for Laravel 9, PHP 8.1 * dropped support for PHP 7.3, minimum version is now 7.4 diff --git a/composer.json b/composer.json index 1f61d69..8f183a2 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } ], "require": { - "php": ">=7.2|^8.0", + "php": ">=7.4|^8.0", "guzzlehttp/guzzle": "^7.0", "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",