Skip to content

Commit 1187c7d

Browse files
Merge pull request #17 from charleskoko/Laravel-10-support
2 parents b7be6ca + e5d7bcf commit 1187c7d

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
name: run-tests
22

3-
on: [push, pull_request]
3+
on: [ push, pull_request ]
44

55
jobs:
66
test:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
fail-fast: true
1010
matrix:
11-
os: [ubuntu-latest]
12-
php: [8.1]
13-
laravel: [9.*]
14-
dependency-version: [prefer-lowest, prefer-stable]
11+
os: [ ubuntu-latest ]
12+
php: [ 8.1 ]
13+
laravel: [ 9.*, 10.* ]
14+
dependency-version: [ prefer-lowest, prefer-stable ]
1515
include:
1616
- laravel: 9.*
1717
testbench: 7.*
18+
- laravel: 10.*
19+
testbench: 8.*
1820

1921
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2022

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
"php": "^8.1",
1616
"ext-simplexml": "*",
1717
"guzzlehttp/guzzle": "^7.1",
18-
"illuminate/notifications": "^9.0",
19-
"illuminate/support": "^9.0"
18+
"illuminate/notifications": "9.0 || ^10.0",
19+
"illuminate/support": "^9.0 || ^10.0"
2020
},
2121
"require-dev": {
2222
"friendsofphp/php-cs-fixer": "^3.6",
2323
"mockery/mockery": "^1.5",
24-
"orchestra/testbench": "^7.0",
25-
"phpunit/phpunit": "^9.5"
24+
"orchestra/testbench": "^v8.0.0",
25+
"phpunit/phpunit": "^9.6"
2626
},
2727
"config": {
2828
"sort-packages": true

0 commit comments

Comments
 (0)