Hi,
here is the error message when doing composer require auth0/jwt-auth-bundle:“~4.0”
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Root composer.json requires auth0/jwt-auth-bundle ~4.0 -> satisfiable by auth0/jwt-auth-bundle[4.0.0].
- auth0/jwt-auth-bundle 4.0.0 requires symfony/framework-bundle ^4.4 || ~5.1 -> found symfony/framework-bundle[v4.4.0, ..., v4.4.41, v5.1.0, ..., v5.4.8] but it conflicts with your root composer.json require (6.0.*).
I found a way to install the lib by specifiying the dev-5.x-dev with this command:
composer require auth0/jwt-auth-bundle:“dev-5.x-dev”
With this I don’t have the error message saying that my composer requires symfony 6+ but in config/package I still can’t find the jwt-auth.yml and in my .env I also don’t have the configuration options added even though in my composer.json and bundle.php I can see that the lib is installed.