Skip to content

Commit

Permalink
[1.x] Laravel v10 Support (#178)
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 4872299 commit 2b511aa
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 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
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
"ext-json": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^6.5|^7.0",
"illuminate/contracts": "^7.9|^8.0|^9.0",
"illuminate/database": "^7.9|^8.0|^9.0",
"illuminate/http": "^7.9|^8.0|^9.0",
"illuminate/routing": "^7.9|^8.0|^9.0",
"illuminate/support": "^7.9|^8.0|^9.0",
"illuminate/view": "^7.9|^8.0|^9.0",
"illuminate/contracts": "^7.9|^8.0|^9.0|^10.0",
"illuminate/database": "^7.9|^8.0|^9.0|^10.0",
"illuminate/http": "^7.9|^8.0|^9.0|^10.0",
"illuminate/routing": "^7.9|^8.0|^9.0|^10.0",
"illuminate/support": "^7.9|^8.0|^9.0|^10.0",
"illuminate/view": "^7.9|^8.0|^9.0|^10.0",
"moneyphp/money": "^3.2|^4.0",
"nesbot/carbon": "^2.0",
"spatie/url": "^1.3.5|^2.0",
Expand All @@ -36,7 +36,7 @@
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^5.0|^6.0|^7.0",
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0",
"phpunit/phpunit": "^8.0|^9.0"
},
"suggest": {
Expand Down

0 comments on commit 2b511aa

Please sign in to comment.