Skip to content

Support for Laravel 8.x

Compare
Choose a tag to compare
@squigg squigg released this 19 Sep 00:37
· 34 commits to master since this release
91c8f56

Support for Laravel 8.x.

Important note re. dependencies

Laravel 8 has moved to Guzzle 7.x, but the upstream dependency microsoft/azure-storage-queue from this package still uses Guzzle 6.
This will cause composer to fail during dependency resolution.

Tests so far have not identified any impacting breaking changes between Guzzle 6 and 7, so while we wait for the upstream package to be updated, you can work around this issue by adding/updating your root
composer.json file to use an inline alias for guzzlehttp/guzzle:

"guzzlehttp/guzzle": "7.0.1 as 6.5.5"

Or run this command:

composer require guzzlehttp/guzzle:"7.0.1 as 6.5.5"