From 69c3fa332f58d02bd1e2c6a6afb9e1b203950785 Mon Sep 17 00:00:00 2001 From: marcelhoogantink <51886888+marcelhoogantink@users.noreply.github.com> Date: Mon, 7 Mar 2022 12:19:53 +0100 Subject: [PATCH] Add support for Laravel 9 (#15) --- .github/workflows/tests.yml | 12 +++++++++++- composer.json | 4 ++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6e5af93..5b17dc1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: fail-fast: true matrix: php: [8.0, 7.4, 7.3, 7.2, 7.1] - laravel: [^8.0, ^7.0, ^6.0, ^5.5] + laravel: [^9.0, ^8.0, ^7.0, ^6.0, ^5.5] stability: [prefer-lowest, prefer-stable] include: - laravel: ^5.5 @@ -20,6 +20,8 @@ jobs: testbench: ^5.0 - laravel: ^8.0 testbench: ^6.0 + - laravel: ^9.0 + testbench: ^7.0 exclude: - laravel: ^5.5 stability: prefer-lowest @@ -29,8 +31,16 @@ jobs: laravel: ^7.0 - php: 7.1 laravel: ^8.0 + - php: 7.1 + laravel: ^9.0 - 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.0 laravel: ^5.5 diff --git a/composer.json b/composer.json index c72feea..401a567 100644 --- a/composer.json +++ b/composer.json @@ -21,8 +21,8 @@ ], "require": { "php": "^7.1 || ^8.0", - "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0", - "illuminate/validation": "^5.5|| ^6.0 || ^7.0 || ^8.0" + "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0|| ^9.0", + "illuminate/validation": "^5.5|| ^6.0 || ^7.0 || ^8.0|| ^9.0" }, "require-dev": { "doctrine/dbal": "^2.9",