clarkeash / doorman

Limit access to your Laravel applications by using invite codes
https://packagist.org/packages/clarkeash/doorman
MIT License
1.02k stars 45 forks source link

support "ramsey/uuid": "^4.0" ? #54

Closed vesper8 closed 4 years ago

vesper8 commented 4 years ago

Hi there,

I'm trying to use Doorman in combination with https://github.com/michaeldyrynda/laravel-model-uuid and it's causing a collision because that package supports the latest "ramsey/uuid": "^4.0" and yours is tied to ^3.6

Any chance you could add support for the ^4.0 please?

clarkeash commented 4 years ago

Looks like #51 will address this, I just need to check it it over

vesper8 commented 4 years ago

Great, didn't see that PR.. hope you find the time soon as I need to make use of both libraries in a project I'm getting close to launching

many thanks!

clarkeash commented 4 years ago

@vesper8 yea I will take a look at this tomorrow

clarkeash commented 4 years ago

@vesper8 5.0.1 has been tagged with this fix

vesper8 commented 4 years ago

Thank you @clarkeash !

For some reason I was still unable to install unless I explicitly added:

"ramsey/uuid": "^4.0"

to my composer.json

After I did that I was able to install and get everything working together on Laravel 7