Skip to content

Commit

Permalink
Feat: Laravel 10.x Compatibility (#57)
Browse files Browse the repository at this point in the history
* Bump dependencies for Laravel 10

* Update GitHub Actions for Laravel 10
  • Loading branch information
laravel-shift authored Mar 6, 2023
1 parent 960e84e commit ebaf2a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['7.4', '8.0', '8.1']
phpunit-versions: ['latest']
phpunit-versions: ['latest', 8.1]
include:
- operating-system: 'ubuntu-latest'
php-versions: '7.2'
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
],
"require": {
"php": ">=7.1.0",
"illuminate/support": "^5.1|^6.0|^7.0|^8.0|^9.0",
"illuminate/translation": "^5.1|6.*|7.*|8.*|9.*"
"illuminate/support": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/translation": "^5.1|6.*|7.*|8.*|9.*|^10.0"
},
"require-dev": {
"illuminate/validation": "~5.1|6.*|7.*|8.*|9.*",
"phpunit/phpunit": "^6.0|^7.0|^8.0",
"orchestra/testbench": "^3.5|^4.0|^5.0|^6.0"
"illuminate/validation": "~5.1|6.*|7.*|8.*|9.*|^10.0",
"phpunit/phpunit": "^6.0|^7.0|^8.0|^9.5.10",
"orchestra/testbench": "^3.5|^4.0|^5.0|^6.0|^8.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit ebaf2a8

Please sign in to comment.