Skip to content

Commit 166f25a

Browse files
Merge pull request #687 from crynobone/patch-2
[2.x] Supports PHP 8.4
2 parents 111d38b + fad74bc commit 166f25a

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@ jobs:
1212
strategy:
1313
fail-fast: true
1414
matrix:
15-
php: [8.1, 8.2, 8.3]
15+
php: [8.1, 8.2, 8.3, 8.4]
1616
laravel: [10, 11]
1717
stability: ["prefer-lowest", "prefer-stable"]
1818
exclude:
19+
- php: 8.4
20+
laravel: 10
1921
- php: 8.1
2022
laravel: 11
2123

@@ -34,7 +36,7 @@ jobs:
3436
coverage: none
3537

3638
- name: Set Minimum PHP 8.1 Versions
37-
uses: nick-invision/retry@v3
39+
uses: nick-fields/retry@v3
3840
with:
3941
timeout_minutes: 5
4042
max_attempts: 5
@@ -44,7 +46,7 @@ jobs:
4446
if: matrix.php >= 8.1 && matrix.stability == 'prefer-lowest'
4547

4648
- name: Set Minimum PHP 8.2 Versions
47-
uses: nick-invision/retry@v3
49+
uses: nick-fields/retry@v3
4850
with:
4951
timeout_minutes: 5
5052
max_attempts: 5
@@ -53,7 +55,7 @@ jobs:
5355
if: matrix.php >= 8.2 && matrix.stability == 'prefer-lowest'
5456

5557
- name: Set Minimum PHP 8.2 Versions and Laravel > 11
56-
uses: nick-invision/retry@v3
58+
uses: nick-fields/retry@v3
5759
with:
5860
timeout_minutes: 5
5961
max_attempts: 5
@@ -63,14 +65,14 @@ jobs:
6365
if: matrix.php >= 8.2 && matrix.stability == 'prefer-lowest' && matrix.laravel >= 11
6466

6567
- name: Set Laravel version
66-
uses: nick-invision/retry@v3
68+
uses: nick-fields/retry@v3
6769
with:
6870
timeout_minutes: 5
6971
max_attempts: 5
7072
command: composer require "laravel/framework=^${{ matrix.laravel }}" --no-interaction --no-update
7173

7274
- name: Install dependencies
73-
uses: nick-invision/retry@v3
75+
uses: nick-fields/retry@v3
7476
with:
7577
timeout_minutes: 5
7678
max_attempts: 5

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
},
3636
"require-dev": {
3737
"roave/security-advisories": "dev-master",
38-
"orchestra/testbench": "^8.0|^9.0",
38+
"orchestra/testbench": "^8.0|^9.2",
3939
"mockery/mockery": "^1.3.3",
4040
"phpunit/phpunit": "^10.4|^11.0",
4141
"laravel/pint": "^1.16"

0 commit comments

Comments
 (0)