From 2965558a264589e2bbb936c35f5fd60ffd22e707 Mon Sep 17 00:00:00 2001 From: manindra Date: Tue, 24 Mar 2026 13:31:30 +0900 Subject: [PATCH 1/3] fix: update illuminate/contracts requirement to include version 13.0 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a76d7c8..3491669 100644 --- a/composer.json +++ b/composer.json @@ -38,7 +38,7 @@ }, "require": { "php": "^8.3", - "illuminate/contracts": "^10.0|^11.0|^12.0", + "illuminate/contracts": "^10.0|^11.0|^12.0|^13.0", "laravel/prompts": "^0.1.1|^0.2|^0.3", "nativephp/php-bin": "^1.0", "spatie/laravel-package-tools": "^1.16.4", From 4792d3b6ce3c5671fa78758a3b3252ce6f9473bf Mon Sep 17 00:00:00 2001 From: manindra Date: Tue, 24 Mar 2026 13:46:26 +0900 Subject: [PATCH 2/3] fix: update Laravel version support in workflows and dependencies --- .github/workflows/run-tests.yml | 2 +- composer.json | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 8e8a69f..36ab9ab 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -15,7 +15,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] php: [8.4, 8.3] - laravel: [12.*, 11.*] + laravel: [13.*, 12.*, 11.*] stability: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 3491669..3810a90 100644 --- a/composer.json +++ b/composer.json @@ -50,11 +50,11 @@ "guzzlehttp/guzzle": "^7.0", "laravel/pint": "^1.0", "larastan/larastan": "^2.0|^3.1", - "nunomaduro/collision": "^7.11|^8.1.1", - "orchestra/testbench": "^8.0|^9.0|^10.0", - "pestphp/pest": "^v2.30|^3.0", - "pestphp/pest-plugin-arch": "^2.0|^3.0", - "pestphp/pest-plugin-laravel": "^2.0|^3.1", + "nunomaduro/collision": "^7.11|^8.1.1|^9.0", + "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0", + "pestphp/pest": "^v2.30|^3.0|^4.0", + "pestphp/pest-plugin-arch": "^2.0|^3.0|^4.0", + "pestphp/pest-plugin-laravel": "^2.0|^3.1|^4.0", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0|^2.0", "phpstan/phpstan-phpunit": "^1.0|^2.0", From 78bec4c73598b47ec978b9750a7ad6af15ea7318 Mon Sep 17 00:00:00 2001 From: manindra Date: Tue, 24 Mar 2026 13:50:56 +0900 Subject: [PATCH 3/3] fix: update Symfony filesystem and finder versions to support 8.0 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 3810a90..3914915 100644 --- a/composer.json +++ b/composer.json @@ -42,8 +42,8 @@ "laravel/prompts": "^0.1.1|^0.2|^0.3", "nativephp/php-bin": "^1.0", "spatie/laravel-package-tools": "^1.16.4", - "symfony/filesystem": "^6.4|^7.2", - "symfony/finder": "^6.2|^7.0", + "symfony/filesystem": "^6.4|^7.2|^8.0", + "symfony/finder": "^6.2|^7.0|^8.0", "ext-zip": "*" }, "require-dev": {