Skip to content

Commit

Permalink
feat: allow Laravel 10 (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
77web authored Aug 8, 2023
1 parent d956e7e commit 9c580e6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ jobs:
strategy:
matrix:
php: ['8.0', '8.1', '8.2']
laravel: ['8', '9']
laravel: ['8', '9', '10']
exclude:
- php: '8.2'
laravel: '8'
- php: '8.0'
laravel: '10'
steps:
- uses: actions/checkout@v3
- name: Setup PHP
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
"php": "^7.4|^8",
"doctrine/migrations": "^3.4",
"doctrine/dbal": "^2.10.1|^3",
"illuminate/config": "^6.0|^7.0|^8.0|^9.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
"illuminate/console": "^6.0|^7.0|^8.0|^9.0",
"laravel-doctrine/orm": "^1 | ^2@dev"
"illuminate/config": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
"laravel-doctrine/orm": "^1.0|^2.0@dev"
},
"require-dev": {
"phpunit/phpunit": "^7.0 | ^8.3 | ^9.3",
Expand Down

0 comments on commit 9c580e6

Please sign in to comment.