Can't install Auth0 PHP packages with Laravel 6

I wanted to follow up @bill.yanelli, @nexstar, and @MelanieTirado. After talking with our SDK team, the supporting changes is within the master branch. There are times where the Master branch contains unreleased changes which appears to have happened in this case but is documented in the changelog.md. This should be officially released in the very near future.

However to get ahead of the official release you can leverage the master branch in Composer that would be something like this should help you move forward.

"repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/auth0/laravel-auth0"
        }
    ],
    "require": {
        "auth0/laravel-auth0": "dev-master"
    }

Thanks!