Skip to content

Commit 84941b4

Browse files
authored
Merge pull request #54 from dpslwk/laravel-9
Add Laravel 9 support
2 parents db71ff9 + 6ecc878 commit 84941b4

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,21 @@ jobs:
66
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
77
strategy:
88
matrix:
9-
php: ['7.2', '7.3', '7.4', '8.0']
10-
laravel: ['6', '7', '8']
9+
php: ['7.2', '7.3', '7.4', '8.0', '8.1']
10+
laravel: ['6', '7', '8', '9']
1111
exclude:
1212
- php: '7.2'
1313
laravel: '8'
14+
- php: '7.2'
15+
laravel: '9'
16+
- php: '7.3'
17+
laravel: '9'
18+
- php: '7.4'
19+
laravel: '9'
20+
- php: '8.1'
21+
laravel: '6'
22+
- php: '8.1'
23+
laravel: '7'
1424
steps:
1525
- uses: actions/checkout@v2
1626
- name: Setup PHP

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828

2929
### Installation
3030

31-
[See the Laravel Doctrine website for instructions](http://www.laraveldoctrine.org/docs/1.0/extensions/installation)
31+
[See the Laravel Doctrine website for instructions](http://www.laraveldoctrine.org/docs/current/extensions/installation)
3232

3333

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
],
2121
"require": {
2222
"php": "^7.2.5|^8.0",
23-
"illuminate/auth": "^6.0|^7.0|^8.0",
24-
"illuminate/config": "^6.0|^7.0|^8.0",
25-
"illuminate/contracts": "^6.0|^7.0|^8.0",
26-
"illuminate/support": "^6.0|^7.0|^8.0",
27-
"illuminate/http": "^6.0|^7.0|^8.0",
23+
"illuminate/auth": "^6.0|^7.0|^8.0|^9.0",
24+
"illuminate/config": "^6.0|^7.0|^8.0|^9.0",
25+
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
26+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
27+
"illuminate/http": "^6.0|^7.0|^8.0|^9.0",
2828
"laravel-doctrine/orm": "^1"
2929
},
3030
"suggest": {

0 commit comments

Comments
 (0)