Skip to content

Commit ac43c7e

Browse files
authored
[1.x] Supports PHP 8.4 (#143)
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
1 parent 480c7be commit ac43c7e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ jobs:
1919
strategy:
2020
fail-fast: true
2121
matrix:
22-
php: [8.1, 8.2, 8.3]
22+
php: [8.1, 8.2, 8.3, 8.4]
2323
laravel: [10, 11]
2424
exclude:
25+
- php: 8.4
26+
laravel: 10
2527
- php: 8.1
2628
laravel: 11
2729

@@ -42,8 +44,7 @@ jobs:
4244

4345
- name: Install dependencies
4446
run: |
45-
composer require "illuminate/contracts=^${{ matrix.laravel }}" --no-update
46-
composer update --prefer-dist --no-interaction --no-progress
47+
composer update --prefer-dist --no-interaction --no-progress --with="illuminate/contracts=^${{ matrix.laravel }}"
4748
4849
- name: Execute tests
4950
run: vendor/bin/pest

0 commit comments

Comments
 (0)