Skip to content

Commit

Permalink
Laravel 12.x Support
Browse files Browse the repository at this point in the history
  • Loading branch information
erikn69 committed Feb 5, 2025
1 parent 2a59de0 commit 1cf6635
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@ jobs:
fail-fast: false
matrix:
php: [8.1, 8.2, 8.3, 8.4]
laravel: [9.*, 10.*, 11.*]
laravel: [9.*, 10.*, 11.*, 12.*]
dependency-version: [prefer-stable]
exclude:
- laravel: 12.*
php: 8.1
- laravel: 11.*
php: 8.1

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@ jobs:
fail-fast: false
matrix:
php: [8.1, 8.2, 8.3, 8.4]
laravel: ['9.*', '10.*', '11.*']
laravel: ['9.*', '10.*', '11.*', '12.*']
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- laravel: 12.*
php: 8.1
exclude:
- laravel: 11.*
php: 8.1
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ composer.phar
composer.lock
.DS_Store
/.idea
.phpunit.result.cache
.phpunit.cache
.phpunit.result.cache
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"require": {
"php": "^8.1",
"dompdf/dompdf": "^3.0",
"illuminate/support": "^9|^10|^11"
"illuminate/support": "^9|^10|^11|^12"
},
"require-dev": {
"orchestra/testbench": "^7|^8|^9",
"orchestra/testbench": "^7|^8|^9|^10",
"squizlabs/php_codesniffer": "^3.5",
"phpro/grumphp": "^2.5",
"larastan/larastan": "^2.7.0"
"larastan/larastan": "^2.7"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 1cf6635

Please sign in to comment.