8 lines
		
	
	
		
			184 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			184 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| $secure_config = [
 | |
|     'token_type' => 'JWT', // random_bytes, md5, crypt, hash, JWT
 | |
|     'token_expired_time' => "+30 days", // +1 day
 | |
| ];
 | |
| 
 | |
| \kernel\App::$secure = $secure_config; |