Skip to content

Commit

Permalink
chore(dependencies): Adds support for Laravel 10 (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeraymonddowning authored Feb 4, 2023
1 parent c0b3572 commit 32aa5ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
php: [ 8.0, 8.1, 8.2 ]
laravel: [ 9 ]
laravel: [ 9, 10 ]
stability: [ prefer-lowest, prefer-stable ]

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} (${{ matrix.stability }})
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
],
"require": {
"php": "^8.0",
"illuminate/contracts": "^9.0",
"illuminate/support": "^9.0",
"illuminate/validation": "^9.0",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/validation": "^9.0|^10.0",
"giggsey/libphonenumber-for-php": "^7.0|^8.0"
},
"require-dev": {
"orchestra/testbench": "*",
"phpunit/phpunit": "^9.5.10",
"nunomaduro/larastan": "^1.0",
"nunomaduro/larastan": "^2.4",
"laravel/pint": "^1.4"
},
"autoload": {
Expand Down

0 comments on commit 32aa5ed

Please sign in to comment.