Skip to content

Commit 929912a

Browse files
ADD laravel 9 support
1 parent a45a355 commit 929912a

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

.github/workflows/run-tests.yml

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

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
48

59
jobs:
610
test:
@@ -9,12 +13,12 @@ jobs:
913
fail-fast: true
1014
matrix:
1115
os: [ubuntu-latest, windows-latest]
12-
php: [8.0]
13-
laravel: [8.*]
16+
php: [8.1, 8.0]
17+
laravel: [9.*]
1418
stability: [prefer-lowest, prefer-stable]
1519
include:
16-
- laravel: 8.*
17-
testbench: ^6.23
20+
- laravel: 9.*
21+
testbench: 7.*
1822

1923
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2024

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
],
1919
"require": {
2020
"php": "^8.0",
21-
"illuminate/database": "^8.0",
22-
"illuminate/support": "^8.0",
21+
"illuminate/database": "^9.0",
22+
"illuminate/support": "^9.0",
2323
"spatie/laravel-package-tools": "^1.9.2"
2424
},
2525
"require-dev": {
2626
"friendsofphp/php-cs-fixer": "^3.4",
27-
"nunomaduro/collision": "^5.10",
28-
"nunomaduro/larastan": "^1.0",
29-
"orchestra/testbench": "^6.22",
27+
"nunomaduro/collision": "^6.0",
28+
"nunomaduro/larastan": "^2.0.1",
29+
"orchestra/testbench": "^7.0",
3030
"pestphp/pest": "^1.21",
3131
"pestphp/pest-plugin-laravel": "^1.1",
3232
"pestphp/pest-plugin-mock": "^1.0",

0 commit comments

Comments
 (0)