From d58280399492c4867cb665b6a06020cc2bac1b81 Mon Sep 17 00:00:00 2001 From: Federico Marquesto Date: Wed, 26 Jun 2024 13:10:04 -0300 Subject: [PATCH 1/2] update library support for laravel 11 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index e4bc26c..c924771 100644 --- a/composer.json +++ b/composer.json @@ -15,12 +15,12 @@ ], "require": { "php": "^8.1", - "illuminate/support": "^10.0", + "illuminate/support": "^10.0|^11.0", "spatie/async": "^1.6" }, "require-dev": { - "orchestra/testbench": "^8.0", - "symplify/easy-coding-standard": "^11.2" + "orchestra/testbench": "^8.0|^9.0", + "symplify/easy-coding-standard": "^11.2|^12.1" }, "autoload": { "psr-4": { From 75cd1f8cd3f543b76ef6fd862c4dcbdbadc58881 Mon Sep 17 00:00:00 2001 From: Federico Marquesto Date: Thu, 27 Jun 2024 11:12:17 -0300 Subject: [PATCH 2/2] added php8.2 to matrix --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 406d3fe..1a32daa 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,6 +13,7 @@ jobs: matrix: php: - 8.1 + - 8.2 posix: - true - false