Skip to content

Commit bba8c2e

Browse files
authored
[1.x] Supports PHP 8.4 (#576)
1 parent 3efca39 commit bba8c2e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
php: [8.1, 8.2, 8.3]
19+
php: [8.1, 8.2, 8.3, 8.4]
2020
laravel: [10, 11]
2121
exclude:
22+
- php: 8.4
23+
laravel: 10
2224
- php: 8.1
2325
laravel: 11
2426

@@ -38,7 +40,7 @@ jobs:
3840
coverage: none
3941

4042
- name: Install dependencies
41-
run: composer require "illuminate/contracts=^${{ matrix.laravel }}" --prefer-dist --no-interaction
43+
run: composer update --prefer-dist --no-interaction --no-progress --with="illuminate/support=^${{ matrix.laravel }}"
4244

4345
- name: Execute tests
44-
run: vendor/bin/phpunit
46+
run: vendor/bin/phpunit --display-deprecations

0 commit comments

Comments
 (0)