Skip to content

Commit 09ec243

Browse files
Support laravel 10-11 and require php 8.1+
1 parent f405a10 commit 09ec243

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php: [8.0, 8.1]
16-
laravel: [8.*, 9.*]
17-
dependency-version: [prefer-stable]
15+
php: [8.1, 8.2, 8.3]
16+
laravel: [10.*, 11.*]
17+
dependency-version: [prefer-lowest, prefer-stable]
18+
exclude:
19+
- php: 8.1
20+
laravel: 11.*
1821

1922
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2023

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
}
88
},
99
"require": {
10-
"php": ">=7.2",
11-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
12-
"nesbot/carbon": "1.*|2.*"
10+
"php": "^8.1",
11+
"illuminate/support": "^10.0|^11.0",
12+
"nesbot/carbon": "^2.0"
1313
},
1414
"require-dev": {
15-
"phpunit/phpunit": "^8.5|^9.5"
15+
"phpunit/phpunit": "^9.5"
1616
},
1717
"config": {
1818
"optimize-autoloader": true,

0 commit comments

Comments
 (0)