Releases: illegalstudio/insideauth
Releases · illegalstudio/insideauth
v0.2.13
v0.2.12
What's Changed
- Added
homepage
parameter. 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
auth
will 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);