Skip to content

Commit

Permalink
Laravel 12.x Compatibility (#26)
Browse files Browse the repository at this point in the history
* Bump dependencies for Laravel 12
* Update GitHub Actions for Laravel 12
  • Loading branch information
laravel-shift authored Feb 15, 2025
1 parent 26654e9 commit c49c24c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ jobs:
fail-fast: true
matrix:
php: [8.4, 8.3, 8.2]
laravel: ["10.*", "11.*"]
laravel: ['10.*', '11.*', '12.*']
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
- laravel: 12.*
testbench: 10.*

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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
],
"require": {
"php": "^8.2|^8.3|^8.4",
"illuminate/support": "^10.0|^11.0"
"illuminate/support": "^10.0|^11.0|^12.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.4"
"orchestra/testbench": "^8.0|^9.0|^10.0",
"phpunit/phpunit": "^10.4|^11.5.3"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -49,4 +49,4 @@
]
}
}
}
}

0 comments on commit c49c24c

Please sign in to comment.