From 335855f1cd32517a16c671a20be5e4a6a8af9241 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Mon, 10 Jan 2022 09:47:07 +0100 Subject: [PATCH 1/4] Bump psysh --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 9360748..1e24a14 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "illuminate/console": "^6.0|^7.0|^8.0", "illuminate/contracts": "^6.0|^7.0|^8.0", "illuminate/support": "^6.0|^7.0|^8.0", - "psy/psysh": "^0.10.4", + "psy/psysh": "^0.10.4|^0.11.1", "symfony/var-dumper": "^4.3.4|^5.0" }, "require-dev": { From 7fcb6157c713280aebc857bd43bdd86e79c3a28a Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Mon, 10 Jan 2022 09:47:29 +0100 Subject: [PATCH 2/4] Symfony v6 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1e24a14..cca02b8 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "illuminate/contracts": "^6.0|^7.0|^8.0", "illuminate/support": "^6.0|^7.0|^8.0", "psy/psysh": "^0.10.4|^0.11.1", - "symfony/var-dumper": "^4.3.4|^5.0" + "symfony/var-dumper": "^4.3.4|^5.0|^6.0" }, "require-dev": { "mockery/mockery": "~1.3.3|^1.4.2", From 55659060ebbb03066a783bf8b8ef18fb11dabd52 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Mon, 10 Jan 2022 09:48:01 +0100 Subject: [PATCH 3/4] Laravel 9 --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index cca02b8..d150066 100644 --- a/composer.json +++ b/composer.json @@ -11,9 +11,9 @@ ], "require": { "php": "^7.2.5|^8.0", - "illuminate/console": "^6.0|^7.0|^8.0", - "illuminate/contracts": "^6.0|^7.0|^8.0", - "illuminate/support": "^6.0|^7.0|^8.0", + "illuminate/console": "^6.0|^7.0|^8.0|^9.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0", "psy/psysh": "^0.10.4|^0.11.1", "symfony/var-dumper": "^4.3.4|^5.0|^6.0" }, @@ -22,7 +22,7 @@ "phpunit/phpunit": "^8.5.8|^9.3.3" }, "suggest": { - "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)." + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)." }, "autoload": { "psr-4": { From 50d207de2cd851203805f509ad6da167fbf0879c Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Mon, 10 Jan 2022 09:49:22 +0100 Subject: [PATCH 4/4] tests --- .github/workflows/tests.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 64a7e5c..478b3ba 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,11 +13,17 @@ jobs: strategy: fail-fast: true matrix: - php: [7.2, 7.3, 7.4, 8.0, 8.1] - laravel: [^6.0, ^7.0, ^8.0] + php: [7.2, 7.3, 7.4, '8.0', 8.1] + laravel: [^6.0, ^7.0, ^8.0, ^9.0] exclude: - php: 7.2 laravel: ^8.0 + - php: 7.2 + laravel: ^9.0 + - php: 7.3 + laravel: ^9.0 + - php: 7.4 + laravel: ^9.0 - php: 8.1 laravel: ^6.0 - php: 8.1