Skip to content

Commit

Permalink
Merge pull request #11 from laravel-shift/l10-compatibility
Browse files Browse the repository at this point in the history
Laravel 10.x Compatibility
  • Loading branch information
dinhquochan authored Feb 2, 2023
2 parents f5c56f8 + 915aa30 commit 768b287
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: true
matrix:
php: [7.3, 7.4, 8.0, 8.1]
laravel: [8.*, 9.*]
laravel: [8.*, 9.*, 10.*]
dependency-version: [prefer-lowest, prefer-stable]

name: P${{ matrix.php }} - L${{ matrix.laravel }} - S${{ matrix.stability }}
Expand Down
9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
],
"require": {
"php": "^7.3|^8.0",
"illuminate/console": "^8.28|^9.0",
"illuminate/support": "^8.28|^9.0",
"illuminate/view": "^8.28|^9.0",
"illuminate/console": "^8.28|^9.0|^10.0",
"illuminate/support": "^8.28|^9.0|^10.0",
"illuminate/view": "^8.28|^9.0|^10.0",
"twig/twig": "~3.0"
},
"require-dev": {
"laravel/framework": "^7.30|^8.28",
"laravel/framework": "^7.30|^8.28|^10.0",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^8.4|^9.0"
},
Expand All @@ -36,7 +36,6 @@
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"

},
"config": {
"sort-packages": true
Expand Down

0 comments on commit 768b287

Please sign in to comment.