--------- Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com>
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
    // One of "bcrypt", "argon", "argon2id"
 | 
						|
    'driver' => 'bcrypt',
 | 
						|
 | 
						|
    'bcrypt' => [
 | 
						|
        'rounds' => env('BCRYPT_ROUNDS', 10),
 | 
						|
    ],
 | 
						|
 | 
						|
 | 
						|
    'argon' => [
 | 
						|
        'memory' => 65536,
 | 
						|
        'threads' => 1,
 | 
						|
        'time' => 4,
 | 
						|
    ],
 | 
						|
];
 |