From 4813156044a62957148dcee5f4765f4952444e2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Mon, 17 Jan 2022 20:29:14 +0100 Subject: [PATCH 1/2] add laravel 9 to ci matrix --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c47a503..4d204c6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,6 +13,7 @@ jobs: env: - LARAVEL_VERSION='^7.0' TESTBENCH_VERSION='^5.0' - LARAVEL_VERSION='^8.0' TESTBENCH_VERSION='^6.0' + - LARAVEL_VERSION='^9.0' TESTBENCH_VERSION='^7.0' name: Test on PHP ${{ matrix.php-versions }}, Laravel ${{ matrix.laravel-versions }} and ${{ matrix.composer-flags }} steps: - name: Checkout From a33e3a9e76c6e602e33f74018015d3ca478bd144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Mon, 17 Jan 2022 20:30:08 +0100 Subject: [PATCH 2/2] add laravel 9 to composer.json --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index c3a5048..9684b3b 100755 --- a/composer.json +++ b/composer.json @@ -17,12 +17,12 @@ }], "require": { "php": "^7.3|^8.0", - "illuminate/support": "^7.0|^8.0" + "illuminate/support": "^7.0|^8.0|^9.0" }, "require-dev": { "phpunit/phpunit": "^7.0|^8.0|^9.0", "larapack/dd": "^1.0", - "orchestra/testbench": "^5.0|^6.0", + "orchestra/testbench": "^5.0|^6.0|^7.0", "mockery/mockery": "^1.0" }, "autoload": {