Sopamo / laravel-filepond

Laravel backend module for filepond uploads
MIT License
204 stars 54 forks source link

Support for Laravel 9.x #59

Closed Kibadda closed 2 years ago

Kibadda commented 2 years ago

Are there any planned updates to support Laravel 9.x?

Sopamo commented 2 years ago

Yes, but I don't have a timeframe yet. I'm open to pull requests though, shouldn't be too hard to implement.

sammyaxe commented 2 years ago

I have forked the repo and simply added the version to allow 9.x, and everything seems to work just fine. I'm not going to do a pull request as I have not tested everything and I'm not too familiar with expectations for a pull request.

@Kibadda if you need short term solution:

add this to your composer.json

"repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/sammyaxe/laravel-filepond"
        }
    ],

and the in require:

"sopamo/laravel-filepond": "dev-master"

that will make it install from my fork, report if you find any issues, I might be able to help fix them, and then we can make pull request.

composer update after composer.json changes are done, of course.

Edit:

also make sure you have dev as minimum stability in composer.json

"minimum-stability": "dev",
Sopamo commented 2 years ago

Has been added with https://github.com/Sopamo/laravel-filepond/releases/tag/v1.1.0