Skip to content

Releases: illegalstudio/insideauth

v0.2.13

02 May 21:45
9e9c2ce
Compare
Choose a tag to compare
  • The getAuthenticator method can be called without name parameter, in this case the default name auth will 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

25 Apr 14:21
1f9a907
Compare
Choose a tag to compare

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

02 Apr 17:11
Compare
Choose a tag to compare

Added enabled function, to enable / disable programmatically the entire auth routes collection

v0.2.10

02 Apr 15:00
Compare
Choose a tag to compare

Changed main middlware name

v.0.2.9

02 Apr 11:43
Compare
Choose a tag to compare

Added insideauth_booted function

v0.2.8

02 Apr 10:54
Compare
Choose a tag to compare

Fixed UserDeleted event not being fired

v0.2.7

02 Apr 10:45
Compare
Choose a tag to compare

Fixed profile destroy

v0.2.6

02 Apr 10:38
Compare
Choose a tag to compare

Simplified route prefix

v0.2.5

02 Apr 10:08
Compare
Choose a tag to compare

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);

v0.2.4

01 Apr 17:31
Compare
Choose a tag to compare

Fixed profile destroy route