Skip to content

Commit d79dcb2

Browse files
Laravel 13.x Compatibility (#79)
* Bump dependencies for Laravel 13 * Update GitHub Actions for Laravel 13 --------- Co-authored-by: oddvalue <jim@oddvalue.co.uk>
1 parent 0563838 commit d79dcb2

2 files changed

Lines changed: 12 additions & 7 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,18 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest]
1919
php: [8.2, 8.3, 8.4, 8.5]
20-
laravel: ['11.*', '12.*']
20+
laravel: ['11.*', '12.*', '13.*']
2121
stability: [prefer-stable]
2222
include:
2323
- laravel: 11.*
2424
testbench: 9.*
2525
- laravel: 12.*
2626
testbench: 10.*
27+
- laravel: 13.*
28+
testbench: 11.*
29+
exclude:
30+
- laravel: 13.*
31+
php: 8.2
2732

2833
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2934

@@ -53,7 +58,7 @@ jobs:
5358

5459
- name: Upload coverage
5560
uses: gaelgirodon/ci-badges-action@v1
56-
if: "github.ref == 'refs/heads/main'"
61+
if: github.ref == 'refs/heads/main'
5762
with:
5863
gist-id: 9dd8e508cb2433728d42a258193770eb
5964
token: ${{ secrets.GIST_TOKEN }}

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@
1919
"require": {
2020
"php": "^8.0",
2121
"driftingly/rector-laravel": "^2.1",
22-
"illuminate/contracts": "^11.0|^12.0",
22+
"illuminate/contracts": "^11.0|^12.0|^13.0",
2323
"spatie/laravel-package-tools": "^1.9.2"
2424
},
2525
"require-dev": {
2626
"friendsofphp/php-cs-fixer": "^3.8",
2727
"larastan/larastan": "^3.0",
28-
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
29-
"pestphp/pest": "^1|^2|^3.7",
30-
"pestphp/pest-plugin-laravel": "^1.1|^2.0|^3.1",
28+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0|^11.0",
29+
"pestphp/pest": "^1|^2|^3.7|^4.4",
30+
"pestphp/pest-plugin-laravel": "^1.1|^2.0|^3.1|^4.1",
3131
"phpstan/extension-installer": "^1.1",
3232
"phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
3333
"phpstan/phpstan-phpunit": "^1.0|^2.0",
34-
"phpunit/phpunit": "^9.0|^10.0|^11.5.3",
34+
"phpunit/phpunit": "^9.0|^10.0|^11.5.3|^12.5.12",
3535
"rector/rector": "^2.0",
3636
"roave/security-advisories": "dev-latest",
3737
"spatie/invade": "^2.0",

0 commit comments

Comments
 (0)