Skip to content

Commit 27c346c

Browse files
authored
Add support for Laravel 11 (#345)
* Add support for Laravel 11. Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> --------- Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 91743b3 commit 27c346c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
fail-fast: true
1616
matrix:
1717
os: [ ubuntu-latest ]
18-
php: [ 8.1, 8.2 ]
18+
php: [ 8.1, 8.2, 8.3 ]
1919
stability: [ lowest, highest ]
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323

2424
- name: Validate composer.json and composer.lock
2525
run: composer validate --strict
@@ -33,7 +33,7 @@ jobs:
3333

3434

3535
- name: Install dependencies
36-
uses: "ramsey/composer-install@v1"
36+
uses: "ramsey/composer-install@v2"
3737
with:
3838
dependency-versions: "${{ matrix.stability }}"
3939
composer-options: "--prefer-dist --no-cache"

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
"description": "Fast Excel import/export for Laravel",
1212
"require": {
1313
"php": "^8.0",
14-
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0|^10.0",
14+
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
1515
"openspout/openspout": "^4.1.1"
1616
},
1717
"require-dev": {
18-
"illuminate/database": "^6.20.12 || ^7.30.4 || ^8.24.0 || ^9.0|^10.0",
19-
"phpunit/phpunit": "^9.5",
18+
"illuminate/database": "^6.20.12 || ^7.30.4 || ^8.24.0 || ^9.0 || ^10.0 || ^11.0",
19+
"phpunit/phpunit": "^9.5 || ^10.1",
2020
"squizlabs/php_codesniffer": "3.*"
2121
},
2222
"autoload": {

0 commit comments

Comments
 (0)