Skip to content

Commit de5b032

Browse files
wip
1 parent 70b9d51 commit de5b032

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

.github/workflows/run-tests.yml

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

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
67
pull_request:
7-
branches: [main]
8+
branches:
9+
- main
810

911
jobs:
1012
test:
@@ -13,8 +15,8 @@ jobs:
1315
fail-fast: true
1416
matrix:
1517
os: [ubuntu-latest, windows-latest]
16-
php: [8.3, 8.2, 8.1, 8.0]
17-
laravel: [11.*, 10.*, 9.*]
18+
php: [8.4, 8.3, 8.2, 8.1, 8.0]
19+
laravel: ['9.*', '10.*', '11.*', '12.*']
1820
stability: [prefer-lowest, prefer-stable]
1921
include:
2022
- laravel: 11.*
@@ -33,6 +35,10 @@ jobs:
3335
php: 8.1
3436
- laravel: 11.*
3537
php: 8.0
38+
- laravel: 12.*
39+
php: 8.1
40+
- laravel: 12.*
41+
php: 8.0
3642

3743
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3844

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@
2525
"require": {
2626
"php": "^8.0",
2727
"ext-openssl": "*",
28-
"illuminate/contracts": "^9.0|^10.0|^11.0",
29-
"illuminate/database": "^9.0|^10.0|^11.0",
30-
"illuminate/support": "^9.0|^10.0|^11.0",
31-
"illuminate/validation": "^9.0|^10.0|^11.0",
28+
"illuminate/contracts": "^9.0|^10.0|^11.0|^12.0",
29+
"illuminate/database": "^9.0|^10.0|^11.0|^12.0",
30+
"illuminate/support": "^9.0|^10.0|^11.0|^12.0",
31+
"illuminate/validation": "^9.0|^10.0|^11.0|^12.0",
3232
"spatie/laravel-package-tools": "^1.14.1"
3333
},
3434
"require-dev": {
3535
"friendsofphp/php-cs-fixer": "^3.4",
36-
"orchestra/testbench": "^7.0|^8.0|^9.0",
37-
"phpunit/phpunit": "^9.5|^10.5",
38-
"vimeo/psalm": "^4.20|^5.22"
36+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
37+
"phpunit/phpunit": "^9.5|^10.5|^11.5.3",
38+
"vimeo/psalm": "^4.20|^5.22|^6.7"
3939
},
4040
"autoload": {
4141
"psr-4": {

0 commit comments

Comments
 (0)