Skip to content

Commit

Permalink
build(deps): add support for Laravel 12
Browse files Browse the repository at this point in the history
  • Loading branch information
xel1045 committed Feb 26, 2025
1 parent 3ba4c61 commit 7c427b3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,20 @@ jobs:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
laravel: [10.*, 11.*]
laravel: [10.*, 11.*, 12.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.1
laravel: 11.*
- php: 8.1
laravel: 12.*
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
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"require": {
"php": "^8.1",
"graylog2/gelf-php": "^1.7",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/log": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0|^12.0",
"illuminate/log": "^10.0|^11.0|^12.0",
"illuminate/support": "^10.0|^11.0|^12.0",
"monolog/monolog": "^2.0|^3.3"
},
"require-dev": {
Expand All @@ -36,8 +36,8 @@
"exolnet/phpcs-config": "^2.0",
"laravel/pint": "^1.2",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.5",
"orchestra/testbench": "^8.0|^9.0|^10.0",
"phpunit/phpunit": "^10.5|^11.5.3",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
Expand Down

0 comments on commit 7c427b3

Please sign in to comment.