Skip to content

Commit fc4f0e2

Browse files
authored
Support PHP 8.5 (#201)
1 parent d0c609c commit fc4f0e2

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
php: [7.3, 7.4, '8.0', 8.1, 8.2, 8.3, 8.4]
19+
php: [7.3, 7.4, '8.0', 8.1, 8.2, 8.3, 8.4, 8.5]
2020
laravel: [6, 7, 8, 9, 10, 11, 12]
2121
exclude:
2222
- php: 7.3
@@ -73,6 +73,16 @@ jobs:
7373
laravel: 9
7474
- php: 8.4
7575
laravel: 10
76+
- php: 8.5
77+
laravel: 6
78+
- php: 8.5
79+
laravel: 7
80+
- php: 8.5
81+
laravel: 8
82+
- php: 8.5
83+
laravel: 9
84+
- php: 8.5
85+
laravel: 10
7686

7787
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
7888

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
}
2525
],
2626
"require": {
27-
"php": "^7.3|~8.0.0|~8.1.0|~8.2.0|~8.3.0|~8.4.0",
27+
"php": "^7.3|~8.0.0|~8.1.0|~8.2.0|~8.3.0|~8.4.0|~8.5.0",
2828
"ext-json": "*",
2929
"ext-soap": "*"
3030
},

0 commit comments

Comments
 (0)