Skip to content

Commit 7dfb41c

Browse files
Let's see if this works
1 parent 732c2f0 commit 7dfb41c

2 files changed

Lines changed: 19 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,18 @@ on:
99

1010
jobs:
1111
tests:
12-
runs-on: ubuntu-24.04
12+
runs-on: ubuntu-latest
1313

1414
strategy:
1515
fail-fast: false
1616
matrix:
1717
stability: [prefer-stable]
18-
versions: [ { php: 8.2, laravel: 10 }, { php: 8.3, laravel: 10 }, { php: 8.4, laravel: 10 }, { php: 8.2, laravel: 11 }, { php: 8.3, laravel: 11 }, { php: 8.4, laravel: 11 }, { php: 8.2, laravel: 12 }, { php: 8.3, laravel: 12 }, { php: 8.4, laravel: 12 } ]
18+
versions: [
19+
{ php: 8.2, laravel: 10 }, { php: 8.3, laravel: 10 }, { php: 8.4, laravel: 10 },
20+
{ php: 8.2, laravel: 11 }, { php: 8.3, laravel: 11 }, { php: 8.4, laravel: 11 },
21+
{ php: 8.2, laravel: 12 }, { php: 8.3, laravel: 12 }, { php: 8.4, laravel: 12 }
22+
{ php: 8.3, laravel: 13 }, { php: 8.4, laravel: 13 }, { php: 8.5, laravel: 13 }
23+
]
1924

2025
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2126

composer.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@
2020
],
2121
"require": {
2222
"php": "^8.2",
23-
"illuminate/routing": "^9.0|^10.0|^11.0|^12.0",
24-
"illuminate/support": "^9.0|^10.0|^11.0|^12.0",
23+
"illuminate/routing": "^9.0|^10.0|^11.0|^12.0|^13.0",
24+
"illuminate/support": "^9.0|^10.0|^11.0|^12.0|^13.0",
2525
"php-open-source-saver/fractal": "^1.0"
2626
},
2727
"require-dev": {
2828
"friendsofphp/php-cs-fixer": "~3",
29-
"illuminate/auth": "^9.0|^10.0|^11.0|^12.0",
30-
"illuminate/cache": "^9.0|^10.0|^11.0|^12.0",
31-
"illuminate/console": "^9.0|^10.0|^11.0|^12.0",
32-
"illuminate/database": "^9.0|^10.0|^11.0|^12.0",
33-
"illuminate/events": "^9.0|^10.0|^11.0|^12.0",
34-
"illuminate/filesystem": "^9.0|^10.0|^11.0|^12.0",
35-
"illuminate/log": "^9.0|^10.0|^11.0|^12.0",
36-
"illuminate/pagination": "^9.0|^10.0|^11.0|^12.0",
37-
"laravel/framework": "^9.0|^10.0|^11.0|^12.0",
38-
"illuminate/translation": "^9.0|^10.0|^11.0|^12.0",
29+
"illuminate/auth": "^9.0|^10.0|^11.0|^12.0|^13.0",
30+
"illuminate/cache": "^9.0|^10.0|^11.0|^12.0|^13.0",
31+
"illuminate/console": "^9.0|^10.0|^11.0|^12.0|^13.0",
32+
"illuminate/database": "^9.0|^10.0|^11.0|^12.0|^13.0",
33+
"illuminate/events": "^9.0|^10.0|^11.0|^12.0|^13.0",
34+
"illuminate/filesystem": "^9.0|^10.0|^11.0|^12.0|^13.0",
35+
"illuminate/log": "^9.0|^10.0|^11.0|^12.0|^13.0",
36+
"illuminate/pagination": "^9.0|^10.0|^11.0|^12.0|^13.0",
37+
"laravel/framework": "^9.0|^10.0|^11.0|^12.0|^13.0",
38+
"illuminate/translation": "^9.0|^10.0|^11.0|^12.0|^13.0",
3939
"mockery/mockery": "~1.0",
4040
"php-open-source-saver/jwt-auth": "^1.4 | ^2.8",
4141
"phpunit/phpunit": "^9.5|^10.5",

0 commit comments

Comments
 (0)