Releases: olssonm/l5-very-basic-auth
Releases · olssonm/l5-very-basic-auth
v6.1
Fix for an issue with a random password upon setup.
Laravel 6.0
Compatibility check for the newly released Laravel 6.0.
Support dropped for versions prior to Laravel 5.8. PHP 7.1 is now also required (note, PHP 7.2 is required for Laravel 6.0).
For other versions of Laravel, please check the v5.6-tag.
v5.6
Allows for the use of inline credentials, as such:
Route::get('/', [
'as' => 'start',
'uses' => 'StartController@index',
'middleware' => 'auth.very_basic:username,password'
]);
See #25 for discussion.
v5.4
The package now checks if the request expects a JSON-response; if so it will automatically provide one.
v5.2
Support for the realm
-attribute that hopefully fixes some minor issues with Internet Explorer (thanks faiare)!
If updating from a previous version you will have to add realm
to your config to be able to edit the value (check out the config stub) – a default value is set however.
Also some other cleanup and improvements.
v1.2.2
Compatibility fix when using Laravel 5.2 and PHP7.x as a combo.
v5.1
New option for wildcard in the envs-array (thank you @amenk for your contribution!)
Fix for inefficient dependancy installation with Composer (sorry if the package took way too long to install). Also fixed the test suit with some better tests and more coverage.
v5.0
Lararel 5.6 update
Minor tweaks to make sure the package is usable for Laravel 5.4, 5.5 and 5.6. Also a new Travis CI-matrix for easier testing for future Laravel updates.