From eaba71fedc41c7137538d70fcde2dd12f10f77ac Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Fri, 21 Nov 2025 23:03:20 +0800 Subject: [PATCH] [0.3.x] PHP 8.4 Compatibility Signed-off-by: Mior Muhammad Zaki --- .github/workflows/tests.yml | 2 +- composer.json | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 59f0248..4161938 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1, 8.2, 8.3, 8.4] + php: [8.1, 8.2, 8.3, 8.4, 8.5] name: PHP ${{ matrix.php }} - With Collections diff --git a/composer.json b/composer.json index e5372b3..f3127b9 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ "require-dev": { "illuminate/collections": "^10.0|^11.0|^12.0", "phpstan/phpstan": "^1.12.28", - "pestphp/pest": "^2.3|^3.4", + "pestphp/pest": "^2.3|^3.4|^4.0", "mockery/mockery": "^1.5", "phpstan/phpstan-mockery": "^1.1.3" }, @@ -37,6 +37,9 @@ "ext-pcntl": "Required for the spinner to be animated." }, "config": { + "audit": { + "block-insecure": false + }, "allow-plugins": { "pestphp/pest-plugin": true }