From 6d18af9783e6e7fba616af9a58488cac5bcc6eed Mon Sep 17 00:00:00 2001 From: Shift Date: Fri, 1 Mar 2024 18:35:13 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 11 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index fe942c6..600a93f 100644 --- a/composer.json +++ b/composer.json @@ -17,13 +17,13 @@ ], "require": { "php": "^7.3|^7.4|^8.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", "javoscript/laravel-macroable-models": "^1.0" }, "require-dev": { "laravel/legacy-factories": "^1.0.4", - "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0", - "phpunit/phpunit": "^8.0|^9.0" + "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0", + "phpunit/phpunit": "^8.0|^9.0|^10.5" }, "autoload": { "psr-4": { From 4e0e9dfae2b427aff8b2265fefa3e81280e7f50f Mon Sep 17 00:00:00 2001 From: Shift Date: Fri, 1 Mar 2024 18:35:14 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 11 --- .github/workflows/phpunit.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index f04b98b..5048da3 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -1,6 +1,7 @@ name: PHPUnit -on: [pull_request] +on: + - pull_request jobs: phpunit: @@ -8,7 +9,7 @@ jobs: strategy: matrix: - php: [ '7.3', '7.4', '8.0', '8.1' ] + php: ['7.3', '7.4', '8.0', '8.1', '8.2'] steps: - name: Cancel Previous Run