Skip to content

Commit 9c580e6

Browse files
authored
feat: allow Laravel 10 (#131)
1 parent d956e7e commit 9c580e6

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ jobs:
1111
strategy:
1212
matrix:
1313
php: ['8.0', '8.1', '8.2']
14-
laravel: ['8', '9']
14+
laravel: ['8', '9', '10']
1515
exclude:
1616
- php: '8.2'
1717
laravel: '8'
18+
- php: '8.0'
19+
laravel: '10'
1820
steps:
1921
- uses: actions/checkout@v3
2022
- name: Setup PHP

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
"php": "^7.4|^8",
2222
"doctrine/migrations": "^3.4",
2323
"doctrine/dbal": "^2.10.1|^3",
24-
"illuminate/config": "^6.0|^7.0|^8.0|^9.0",
25-
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
26-
"illuminate/console": "^6.0|^7.0|^8.0|^9.0",
27-
"laravel-doctrine/orm": "^1 | ^2@dev"
24+
"illuminate/config": "^6.0|^7.0|^8.0|^9.0|^10.0",
25+
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
26+
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
27+
"laravel-doctrine/orm": "^1.0|^2.0@dev"
2828
},
2929
"require-dev": {
3030
"phpunit/phpunit": "^7.0 | ^8.3 | ^9.3",

0 commit comments

Comments
 (0)