Skip to content

Commit

Permalink
Laravel v12 Support (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints authored Feb 13, 2025
1 parent 71ade6c commit e974299
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,30 +17,38 @@ jobs:
fail-fast: true
matrix:
php: [7.3, 7.4, '8.0', 8.1, 8.2, 8.3, 8.4]
laravel: [6, 7, 8, 9, 10, 11]
laravel: [6, 7, 8, 9, 10, 11, 12]
exclude:
- php: 7.3
laravel: 11
- php: 7.3
laravel: 9
- php: 7.3
laravel: 10
- php: 7.3
laravel: 11
- php: 7.3
laravel: 12
- php: 7.4
laravel: 9
- php: 7.4
laravel: 10
- php: 7.4
laravel: 11
- php: 7.4
laravel: 12
- php: '8.0'
laravel: 10
- php: '8.0'
laravel: 11
- php: 8.1
laravel: 11
- php: '8.0'
laravel: 12
- php: 8.1
laravel: 6
- php: 8.1
laravel: 7
- php: 8.1
laravel: 11
- php: 8.1
laravel: 12
- php: 8.2
laravel: 6
- php: 8.2
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
"ext-soap": "*"
},
"require-dev": {
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"mockery/mockery": "^1.3.3",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.5|^10.0"
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
"phpunit/phpunit": "^9.5|^10.0|^11.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit e974299

Please sign in to comment.