I’m using Auth0’s PHP SDK.
I’m instantiating it as here:
$auth0 = new Auth0([ 'domain' => $domain, 'client_id' => $client_id, 'client_secret' => $client_secret, 'redirect_uri' => $redirect_uri, 'audience' => $audience, 'scope' => 'openid profile', 'persist_id_token' => true, 'persist_access_token' => true, 'persist_refresh_token' => true, // 'options' => array( // 'initial_screen' => 'forgot_password' // ) ]);
Its working fine, but how do I add config options as here: Lock Configuration Options
For example, I want to present the SignUp rather than the Login tab when it initially opens…