Skip to content

Commit

Permalink
Laravel 10.x Compatibility (#9)
Browse files Browse the repository at this point in the history
Co-authored-by: Pascal Baljet <pascal@pascalbaljet.nl>
  • Loading branch information
laravel-shift and pascalbaljet committed Feb 21, 2023
1 parent 875b74d commit 12cbc55
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.2, 8.1, 8.0]
laravel: [9.*]
php: [8.2, 8.1]
laravel: [10.*, 9.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@
}
],
"require": {
"php": "^8.0 || ^8.1 || ^8.2",
"illuminate/support": "^9.0"
"php": "^8.1 || ^8.2",
"illuminate/support": "^9.0 || ^10.0"
},
"require-dev": {
"html2text/html2text": "^4.3",
"jeremykendall/php-domain-parser": "^6.0",
"laravel/ui": "^3.0",
"mockery/mockery": "^1.3.3",
"laravel/ui": "^3.0|^4.0",
"mockery/mockery": "^1.4.4",
"moneyphp/money": "^3.3",
"nesbot/carbon": "^2.63",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.4",
"nesbot/carbon": "^2.66",
"orchestra/testbench": "^7.0 || ^8.0",
"phpunit/phpunit": "^9.5",
"spatie/laravel-sitemap": "^6.0",
"symfony/process": "^6.0"
},
Expand Down Expand Up @@ -56,4 +56,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}

0 comments on commit 12cbc55

Please sign in to comment.