Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 38b1153

Browse files
authoredFeb 15, 2023
Laravel 10 Support (#294)
* Update tests.yml * Update composer.json * Update tests.yml
1 parent 0c5e723 commit 38b1153

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed
 

‎.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,16 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
php: [7.4, 8.0, 8.1]
15-
laravel: [8.*, 9.*]
14+
php: [7.4, 8.0, 8.1, 8.2]
15+
laravel: [8.*, 9.*, 10.*]
1616
dependency-version: [prefer-stable]
1717
exclude:
1818
- php: 7.4
1919
laravel: 9.*
20+
- php: 7.4
21+
laravel: 10.*
22+
- php: 8.0
23+
laravel: 10.*
2024

2125
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2226

‎composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
"require": {
2626
"php": ">=7.1|^8.0",
2727
"ext-json": "*",
28-
"illuminate/config": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0",
29-
"illuminate/support": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0"
28+
"illuminate/config": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
29+
"illuminate/support": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
3030
},
3131
"require-dev": {
32-
"orchestra/testbench": "~3.8.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
32+
"orchestra/testbench": "~3.8.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
3333
"phpspec/phpspec": "~5.1.1 || ^6.0 || ^7.0"
3434
},
3535
"autoload": {

0 commit comments

Comments
 (0)
Please sign in to comment.