Skip to content

Commit 0a2a8df

Browse files
authored
Fix CI tests and drop Laravel 8 support (#27)
* Fix ci tests * test * fix test * fix test * fix L8 min version * fix * revert * drop L8 support
1 parent af0ac50 commit 0a2a8df

3 files changed

Lines changed: 4 additions & 14 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,9 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
php: [8.0, 8.1]
21-
laravel: [8.*, 9.*, 10.*]
20+
php: [8.0, 8.1, 8.2]
21+
laravel: [9.*, 10.*]
2222
dependency-version: [prefer-lowest, prefer-stable]
23-
include:
24-
- dbal: ignore
25-
- laravel: 8.*
26-
testbench: ^6.0
27-
dbal: install
28-
- laravel: 9.*
29-
dbal: install
3023
exclude:
3124
- laravel: 10.*
3225
php: 8.0
@@ -54,7 +47,6 @@ jobs:
5447
- name: Install Composer dependencies
5548
run: |
5649
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
57-
if [[ ${{matrix.dbal}} = 'install' ]]; then composer require doctrine/dbal; fi
5850
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
5951
6052
- name: Run PHPUnit tests

.styleci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ preset: psr12
22
version: 8
33
enabled:
44
- alpha_ordered_imports
5-
- binary_operator_spaces
65
- blank_line_before_return
76
- cast_spaces
87
- hash_to_slash_comment
@@ -55,5 +54,4 @@ enabled:
5554
- trim_array_spaces
5655
- unalign_double_arrow
5756
- unalign_equals
58-
- unary_operator_spaces
5957
- whitespace_after_comma_in_array

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
],
2121
"require": {
2222
"php": "^8.0",
23-
"illuminate/events": "^8|^9|^10.0",
24-
"illuminate/support": "^8|^9|^10.0",
23+
"illuminate/events": "^9.52|^10.0",
24+
"illuminate/support": "^9.52|^10.0",
2525
"symfony/event-dispatcher": "^5.1",
2626
"symfony/workflow": "^5.1",
2727
"symfony/property-access": "^5.1"

0 commit comments

Comments
 (0)