<?php12return [3/*4|--------------------------------------------------------------------------5| Default Hash Driver6|--------------------------------------------------------------------------7|8| This option controls the default hash driver that will be used to hash9| passwords for your application. By default, the bcrypt algorithm is10| used; however, you remain free to modify this option if you wish.11|12| Supported: "bcrypt", "argon", "argon2id"13|14*/1516'driver' => 'bcrypt',1718/*19|--------------------------------------------------------------------------20| Bcrypt Options21|--------------------------------------------------------------------------22|23| Here you may specify the configuration options that should be used when24| passwords are hashed using the Bcrypt algorithm. This will allow you25| to control the amount of time it takes to hash the given password.26|27*/2829'bcrypt' => [30'rounds' => env('BCRYPT_ROUNDS', 10),31],3233/*34|--------------------------------------------------------------------------35| Argon Options36|--------------------------------------------------------------------------37|38| Here you may specify the configuration options that should be used when39| passwords are hashed using the Argon algorithm. These will allow you40| to control the amount of time it takes to hash the given password.41|42*/4344'argon' => [45'memory' => 65536,46'threads' => 1,47'time' => 4,48],49];505152