Daanra / laravel-lets-encrypt

Let's Encrypt wrapper for Laravel
MIT License
200 stars 28 forks source link

Does it work with 8.6+? #13

Closed jawwadkalia closed 2 years ago

jawwadkalia commented 2 years ago

Getting an issue installing in on a fresh laravel 8.65 installation (installing all dependencies) - is it compatible?

Daanra commented 2 years ago

There does indeed seem to be a dependency conflict on the latest version. I'll try to get it resolved as soon as possible.

Dasinfomedia2 commented 2 years ago

on which laravel version does it work properly?

Daanra commented 2 years ago

Should work if you downgrade Guzzle to ^6.0.

For example:

laravel new test
cd test
composer require daanra/laravel-lets-encrypt guzzlehttp/guzzle:^6.0  -w

To support guzzle^7.0, we need to wait for https://github.com/acmephp/core to update their dependencies.

Let me know if you still have some problems.