From cceb1fc93f240d5ca0c800ab2bda6b5c49b1f5af Mon Sep 17 00:00:00 2001 From: Tom Witkowski Date: Sun, 16 Jul 2023 23:26:41 +0200 Subject: [PATCH] add laravel 10 support --- .github/workflows/pest.yml | 2 +- composer.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pest.yml b/.github/workflows/pest.yml index 62496e5..a25d8ad 100644 --- a/.github/workflows/pest.yml +++ b/.github/workflows/pest.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.1] + php: [8.1, 8.2] dependency-version: [prefer-lowest, prefer-stable] steps: diff --git a/composer.json b/composer.json index 5ec0de5..762ccaa 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "require": { "php": "^8.1", "ext-json": "*", - "illuminate/support": "^9.0", + "illuminate/support": "^9.0 || ^10.0", "nesbot/carbon": "^2.53.1", "sammyjo20/saloon": "^2.0", "sammyjo20/saloon-laravel": "^v2.0", @@ -33,7 +33,7 @@ "require-dev": { "astrotomic/phpunit-assertions": "^0.10.0", "laravel/pint": "^1.2", - "orchestra/testbench": "^7.0", + "orchestra/testbench": "^7.0 || ^8.0", "pestphp/pest": "^1.21", "pestphp/pest-plugin-laravel": "^1.2" },