From dd6183c634215206656af6da1787c1f9e3cebef1 Mon Sep 17 00:00:00 2001 From: Erik Perri Date: Tue, 31 Mar 2026 16:39:35 -0400 Subject: [PATCH 1/2] update: add php 8.5 support --- .github/workflows/main.yml | 4 ++-- composer.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7b6c218..ce43926 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.2, 8.3, 8.4 ] + php: [8.2, 8.3, 8.4, 8.5] laravel: [ 11.0, 12.0 ] name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} steps: @@ -50,7 +50,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.2' + php-version: 8.5 tools: composer:v2 extensions: dom, curl, libxml, mbstring, zip, pcntl, gd, soap coverage: none diff --git a/composer.json b/composer.json index eb6c722..df24874 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ "prefer-stable": true, "require": { "ext-json": "*", - "php": "^8.2||^8.3||^8.4", + "php": "^8.2||^8.3||^8.4||^8.5", "illuminate/auth": "^11.0|^12.0", "illuminate/config": "^11.0|^12.0", "illuminate/database": "^11.0|^12.0", From efb0b99482a6aee90017ed4ca7aadc6f915c35d3 Mon Sep 17 00:00:00 2001 From: Erik Perri Date: Tue, 31 Mar 2026 16:39:40 -0400 Subject: [PATCH 2/2] update: add laravel 13 support --- .github/workflows/main.yml | 5 ++++- README.md | 2 +- composer.json | 12 ++++++------ 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ce43926..aa311d6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,10 @@ jobs: fail-fast: true matrix: php: [8.2, 8.3, 8.4, 8.5] - laravel: [ 11.0, 12.0 ] + laravel: [11.0, 12.0, 13.0] + exclude: + - php: 8.2 + laravel: 13.0 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} steps: - name: Checkout code diff --git a/README.md b/README.md index 7d0186c..bffde88 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ This means that the method for storage must be efficient, unlike other packages ### Laravel -You are reading the documentation for Laravel 11.x and 12.x. +You are reading the documentation for Laravel 11.x, 12.x, and 13.x. * If you're using Laravel 9 or 10 please see the docs for [4.x](https://github.com/sourcetoad/Logger/releases/tag/v4.2.0). * If you're using Laravel 6, 7 or 8 please see the docs for [3.x](https://github.com/sourcetoad/Logger/releases/tag/v3.0.1). diff --git a/composer.json b/composer.json index df24874..7a84c4e 100644 --- a/composer.json +++ b/composer.json @@ -17,15 +17,15 @@ "require": { "ext-json": "*", "php": "^8.2||^8.3||^8.4||^8.5", - "illuminate/auth": "^11.0|^12.0", - "illuminate/config": "^11.0|^12.0", - "illuminate/database": "^11.0|^12.0", - "illuminate/support": "^11.0|^12.0", - "illuminate/translation": "^11.0|^12.0" + "illuminate/auth": "^11.0|^12.0|^13.0", + "illuminate/config": "^11.0|^12.0|^13.0", + "illuminate/database": "^11.0|^12.0|^13.0", + "illuminate/support": "^11.0|^12.0|^13.0", + "illuminate/translation": "^11.0|^12.0|^13.0" }, "require-dev": { "laravel/pint": "1.21", - "orchestra/testbench": "^9.5|^10.0", + "orchestra/testbench": "^9.5|^10.0|^11.0", "phpunit/phpunit": "^11.5" }, "autoload": {