simple-excel
simple-excel copied to clipboard
Allow Laravel 11
I've worked out the necessary dependencies for composer and the ci workflows will work fine as is, but I was unable to get the ci worklows running properly for L11 so I've left them alone for now. Perhaps someone can help?
The main issue I believe is that L11 drops support for php8.1. I'm comfortable submitting proposed changes in composer.json for added support, however when it comes to dropping support for php8.1 etc. (if necessary), maintainers are free to edit this PR!
What I've tried:
matrix:
- php: [8.2, 8.1]
- laravel: [ 10.*, 9.*]
+ php: [8.3, 8.2, 8.1]
+ laravel: [11.*, 10.*, 9.*]
...
include:
+ - laravel: 11.*
+ testbench: 9.*
I tried the above changes and let the workflows run on my own forked repo, however it didn't work because when it ran for L11 it started with php8.1, which led to an unresolvable dependencies error.