Skip to content

Commit

Permalink
[6.x] Laravel v10 Support (#166)
Browse files Browse the repository at this point in the history
* Update composer.json

* Update tests.yml
  • Loading branch information
driesvints authored Jan 6, 2023
1 parent 7745dae commit 1f7c5d6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,24 @@ jobs:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2]
laravel: [7, 8, 9]
laravel: [7, 8, 9, 10]
exclude:
- php: 7.2
laravel: 8
- php: 7.2
laravel: 9
- php: 7.2
laravel: 10
- php: 7.3
laravel: 9
- php: 7.3
laravel: 10
- php: 7.4
laravel: 9
- php: 7.4
laravel: 10
- php: '8.0'
laravel: 10
- php: 8.1
laravel: 7
- php: 8.2
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"php": "^7.2|^8.0",
"ext-dom": "*",
"ext-json": "*",
"illuminate/contracts": "^7.0|^8.0|^9.0",
"illuminate/database": "^7.0|^8.0|^9.0",
"illuminate/http": "^7.0|^8.0|^9.0",
"illuminate/support": "^7.0|^8.0|^9.0",
"illuminate/testing": "^7.0|^8.0|^9.0",
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0",
"illuminate/database": "^7.0|^8.0|^9.0|^10.0",
"illuminate/http": "^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
"illuminate/testing": "^7.0|^8.0|^9.0|^10.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.5|^9.0",
"symfony/console": "^5.0|^6.0",
Expand All @@ -27,7 +27,7 @@
"symfony/http-kernel": "^5.0|^6.0"
},
"require-dev": {
"laravel/framework": "^7.0|^8.0|^9.0"
"laravel/framework": "^7.0|^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 1f7c5d6

Please sign in to comment.