Skip to content

Commit be88713

Browse files
authored
Merge pull request #20 from njoguamos/Add-larave-10-support
Add Laravel 10 support
2 parents f8a7e7d + 259841d commit be88713

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/run-tests.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,24 @@ jobs:
1010
matrix:
1111
os: [ ubuntu-latest ]
1212
php: [8.0, 8.1, 8.2]
13-
laravel: [ 8.*, 9.* ]
13+
laravel: [ 8.*, 9.* , 10.*]
1414
dependency-version: [ prefer-lowest, prefer-stable ]
1515
include:
1616
- laravel: 8.*
1717
testbench: ^6.25
1818
- laravel: 9.*
1919
testbench: 7.*
20+
- laravel: 10.*
21+
testbench: 8.*
22+
exclude:
23+
- laravel: 10.*
24+
php: 8.0
2025

2126
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2227

2328
steps:
2429
- name: Checkout code
25-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
2631

2732
- name: Cache dependencies
2833
uses: actions/cache@v2

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
],
1818
"require" : {
1919
"php": "^8.0",
20-
"illuminate/console": "^8.83|^9.30",
20+
"illuminate/console": "^8.83|^9.30|^10.0",
2121
"spatie/laravel-package-tools": "^1.12",
2222
"spatie/typescript-transformer" : "^2.1.12"
2323
},
2424
"require-dev" : {
2525
"friendsofphp/php-cs-fixer": "^3.0",
2626
"mockery/mockery": "^1.4",
2727
"nesbot/carbon": "^2.63",
28-
"orchestra/testbench": "^6.0|^7.0",
28+
"orchestra/testbench": "^6.0|^7.0|^8.0",
2929
"pestphp/pest": "^1.22",
3030
"phpunit/phpunit": "^9.0",
3131
"spatie/data-transfer-object": "^2.0",

0 commit comments

Comments
 (0)