From aa9222b6d153c5f3b024856d320ff76d98e52569 Mon Sep 17 00:00:00 2001 From: Norby Baruani Date: Wed, 9 Oct 2024 10:26:01 +0200 Subject: [PATCH 1/8] Fix ci tests --- .styleci.yml | 2 -- composer.json | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.styleci.yml b/.styleci.yml index 60b81a2..9c21065 100644 --- a/.styleci.yml +++ b/.styleci.yml @@ -2,7 +2,6 @@ preset: psr12 version: 8 enabled: - alpha_ordered_imports - - binary_operator_spaces - blank_line_before_return - cast_spaces - hash_to_slash_comment @@ -55,5 +54,4 @@ enabled: - trim_array_spaces - unalign_double_arrow - unalign_equals - - unary_operator_spaces - whitespace_after_comma_in_array diff --git a/composer.json b/composer.json index 07758fa..4deebcf 100644 --- a/composer.json +++ b/composer.json @@ -20,8 +20,8 @@ ], "require": { "php": "^8.0", - "illuminate/events": "^8|^9|^10.0", - "illuminate/support": "^8|^9|^10.0", + "illuminate/events": "^8.75|^9.52|^10.0", + "illuminate/support": "^8.75|^9.52|^10.0", "symfony/event-dispatcher": "^5.1", "symfony/workflow": "^5.1", "symfony/property-access": "^5.1" From 009240727a06c4d462eb08f45f6175ffad346304 Mon Sep 17 00:00:00 2001 From: Norby Baruani Date: Wed, 9 Oct 2024 11:08:22 +0200 Subject: [PATCH 2/8] test --- .github/workflows/main.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6fcd2fd..479fc34 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,11 +22,6 @@ jobs: dependency-version: [prefer-lowest, prefer-stable] include: - dbal: ignore - - laravel: 8.* - testbench: ^6.0 - dbal: install - - laravel: 9.* - dbal: install exclude: - laravel: 10.* php: 8.0 From 2abe857d563736c9f80f0c51931210e1e3608f9c Mon Sep 17 00:00:00 2001 From: Norby Baruani Date: Wed, 9 Oct 2024 11:13:20 +0200 Subject: [PATCH 3/8] fix test --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 479fc34..52de582 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,6 +22,9 @@ jobs: dependency-version: [prefer-lowest, prefer-stable] include: - dbal: ignore + - laravel: 8.* + testbench: ^6.0 + dbal: install exclude: - laravel: 10.* php: 8.0 From 4d8054d4b8e40c3d2bf2d0fab7070af2cee2fb4f Mon Sep 17 00:00:00 2001 From: Norby Baruani Date: Wed, 9 Oct 2024 11:26:28 +0200 Subject: [PATCH 4/8] fix test --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 52de582..919315e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,7 +52,7 @@ jobs: - name: Install Composer dependencies run: | composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update - if [[ ${{matrix.dbal}} = 'install' ]]; then composer require doctrine/dbal; fi + if [[ ${{matrix.dbal}} = 'install' ]]; then composer require doctrine/dbal:4.1.1; fi composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction - name: Run PHPUnit tests From db23f000a3d196a046d62193e760baacaf396c09 Mon Sep 17 00:00:00 2001 From: Norby Baruani Date: Wed, 9 Oct 2024 11:37:24 +0200 Subject: [PATCH 5/8] fix L8 min version --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 4deebcf..4fea08f 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ "require": { "php": "^8.0", "illuminate/events": "^8.75|^9.52|^10.0", - "illuminate/support": "^8.75|^9.52|^10.0", + "illuminate/support": "^8.83|^9.52|^10.0", "symfony/event-dispatcher": "^5.1", "symfony/workflow": "^5.1", "symfony/property-access": "^5.1" From 6f7f83a8a117546236bf0651ace26a8ea0eabdad Mon Sep 17 00:00:00 2001 From: Norby Baruani Date: Wed, 9 Oct 2024 11:38:11 +0200 Subject: [PATCH 6/8] fix --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 4fea08f..8603617 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ ], "require": { "php": "^8.0", - "illuminate/events": "^8.75|^9.52|^10.0", + "illuminate/events": "^8.83|^9.52|^10.0", "illuminate/support": "^8.83|^9.52|^10.0", "symfony/event-dispatcher": "^5.1", "symfony/workflow": "^5.1", From c6b57f407180561756e2290c6f54cfc1c6500908 Mon Sep 17 00:00:00 2001 From: Norby Baruani Date: Wed, 9 Oct 2024 11:39:41 +0200 Subject: [PATCH 7/8] revert --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 919315e..52de582 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,7 +52,7 @@ jobs: - name: Install Composer dependencies run: | composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update - if [[ ${{matrix.dbal}} = 'install' ]]; then composer require doctrine/dbal:4.1.1; fi + if [[ ${{matrix.dbal}} = 'install' ]]; then composer require doctrine/dbal; fi composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction - name: Run PHPUnit tests From 401896b818987cc6cd9d7610910e7190139842c0 Mon Sep 17 00:00:00 2001 From: Norby Baruani Date: Wed, 9 Oct 2024 12:19:56 +0200 Subject: [PATCH 8/8] drop L8 support --- .github/workflows/main.yml | 10 ++-------- composer.json | 4 ++-- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 52de582..4add4ff 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,14 +17,9 @@ jobs: strategy: fail-fast: false matrix: - php: [8.0, 8.1] - laravel: [8.*, 9.*, 10.*] + php: [8.0, 8.1, 8.2] + laravel: [9.*, 10.*] dependency-version: [prefer-lowest, prefer-stable] - include: - - dbal: ignore - - laravel: 8.* - testbench: ^6.0 - dbal: install exclude: - laravel: 10.* php: 8.0 @@ -52,7 +47,6 @@ jobs: - name: Install Composer dependencies run: | composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update - if [[ ${{matrix.dbal}} = 'install' ]]; then composer require doctrine/dbal; fi composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction - name: Run PHPUnit tests diff --git a/composer.json b/composer.json index 8603617..5254692 100644 --- a/composer.json +++ b/composer.json @@ -20,8 +20,8 @@ ], "require": { "php": "^8.0", - "illuminate/events": "^8.83|^9.52|^10.0", - "illuminate/support": "^8.83|^9.52|^10.0", + "illuminate/events": "^9.52|^10.0", + "illuminate/support": "^9.52|^10.0", "symfony/event-dispatcher": "^5.1", "symfony/workflow": "^5.1", "symfony/property-access": "^5.1"