Skip to content

Commit f889fd7

Browse files
authored
Laravel11 compatibility (#66)
* allow laravel v11 * set orm version to laravel-shift's dev-l11-compatibility * fixed version * switched laravel-doctrine/orm repository to official * dropped support for laravel v6, v7, v8 * ci: fixed php and laravel version compatibility * fixed php version
1 parent ef89db8 commit f889fd7

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.github/workflows/ci.yml

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

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
}
2020
],
2121
"require": {
22-
"php": "^7.2.5|^8.0",
23-
"illuminate/auth": "^6.0|^7.0|^8.0|^9.0|^10.0",
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/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
27-
"illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
28-
"laravel-doctrine/orm": "^1|^2.0"
22+
"php": "^8.0",
23+
"illuminate/auth": "^9.0|^10.0|^11.0",
24+
"illuminate/config": "^9.0|^10.0|^11.0",
25+
"illuminate/contracts": "^9.0|^10.0|^11.0",
26+
"illuminate/support": "^9.0|^10.0|^11.0",
27+
"illuminate/http": "^9.0|^10.0|^11.0",
28+
"laravel-doctrine/orm": "^2.0"
2929
},
3030
"suggest": {
3131
"gedmo/doctrine-extensions": "Behavioral Doctrine2 extensions",

0 commit comments

Comments
 (0)