From 73f7dffe64179c76ff71e8a6e2e8229c2d90bb5f Mon Sep 17 00:00:00 2001 From: kyledoesdev Date: Wed, 15 Jul 2026 10:23:38 -0400 Subject: [PATCH] Add support for PHP 8.5 --- .github/workflows/run-tests.yml | 2 +- README.md | 2 +- composer.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index d1128ed..5098813 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -21,7 +21,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.4] + php: [8.4, 8.5] laravel: [12.*, 13.*] stability: [prefer-stable] include: diff --git a/README.md b/README.md index f395f4f..76737b7 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Generates action classes in `app/Actions` directory. ## Requirements - Laravel 11+ -- PHP 8.4+ +- PHP 8.4 / 8.5 ## License MIT license. \ No newline at end of file diff --git a/composer.json b/composer.json index 0fe405d..c36fc8c 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^8.4", + "php": "^8.4|^8.5", "illuminate/contracts": "^12.0|^13.0", "illuminate/http": "^12.0|^13.0", "illuminate/support": "^12.0|^13.0",