Releases: illegalstudio/insideauth
Releases · illegalstudio/insideauth
Release list
v0.2.13
- The getAuthenticator method can be called without name parameter, in this case the default name
authwill be used. - Added parameter with the list of all authentication classes used by insideauth (can be used to pass them to addPersistentMiddleware of livewire component)
v0.2.12
What's Changed
- Added
homepageparameter. The user will be redirect here after logout or delete account. - Fixed some missing return types.
- The boot method can be called without name parameter, in this case the default name
authwill be used. - Added testing using pestphp.
Full Changelog: v0.2.11...v0.2.12
v0.2.11
v0.2.10
v.0.2.9
v0.2.8
v0.2.7
v0.2.6
v0.2.5
Added parameters to all without* methods to allow for more flexibility.
For example, you can now do:
/**
* Gather a configuration value from your application that determines
* whether or not registration is disabled.
*/
$disableRegistration = config('myapp.disable_registration');
/**
* Pass the configuration value to the withoutRegistration method.
*/
insideauth()->withoutRegistration($disableRegistration);