From ad37cb2edb243d355375be3c86a3f186ae0181a9 Mon Sep 17 00:00:00 2001 From: Flavio Medeiros Date: Sat, 19 Feb 2022 10:11:49 -0300 Subject: [PATCH 1/3] issue-11 upgraded dependencies to add support the laravel 9.x --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 78e713c..44f26cf 100644 --- a/composer.json +++ b/composer.json @@ -4,10 +4,10 @@ "type": "library", "require": { "php": "^7.2|^8.0", - "illuminate/database": "^6.0|^7.0|^8.0" + "illuminate/database": "^6.0|^7.0|^8.0|^9.0" }, "require-dev": { - "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0", + "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0|^7.0", "phpunit/phpunit": "^8.0|^9.0" }, "autoload": { From a66b96d99ce3f53feaeb717a88f1a59b864661b7 Mon Sep 17 00:00:00 2001 From: Flavio Medeiros Date: Tue, 8 Mar 2022 20:17:29 -0300 Subject: [PATCH 2/3] Update github workflow to add laravel 9 --- .github/workflows/tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8c53e5a..d84fa11 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,11 +12,14 @@ jobs: fail-fast: true matrix: php: [7.2, 7.4, 8.0] - laravel: [^6.0, ^7.0, ^8.0] + laravel: [^6.0, ^7.0, ^8.0, ^9.0] exclude: # Exclude laravel 8 on php 7.2 as it requires php 7.3+ - php: 7.2 laravel: ^8.0 + # Exclude laravel 9 on php 7.2, 7.3 and 7.4 as it requires php 8.0+ + - php: [7.2, 7.3, 7.4] + laravel: ^9.0 name: Run Test (P${{ matrix.php }} - L${{ matrix.laravel }}) From 1eec55db0f3b95228c2c238558ae5233c97afea1 Mon Sep 17 00:00:00 2001 From: Flavio Medeiros Date: Tue, 8 Mar 2022 20:19:21 -0300 Subject: [PATCH 3/3] FIX Update github workflow to add laravel 9 --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d84fa11..1b63d1b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,9 @@ jobs: - php: 7.2 laravel: ^8.0 # Exclude laravel 9 on php 7.2, 7.3 and 7.4 as it requires php 8.0+ - - php: [7.2, 7.3, 7.4] + - php: 7.2 + laravel: ^9.0 + - php: 7.4 laravel: ^9.0 name: Run Test (P${{ matrix.php }} - L${{ matrix.laravel }})