auth.php 369 B

12345678910111213141516171819
  1. <?php
  2. return [
  3. 'driver' => 'File',
  4. 'hash_method' => 'sha256',
  5. 'hash_key' => NULL,
  6. 'lifetime' => 1209600,
  7. 'session_type' => Session::$default,
  8. 'session_key' => 'auth_user',
  9. // For Auth_Bcrypt
  10. 'cost' => 10,
  11. // Username/password combinations for the Auth File driver
  12. 'users' => [
  13. // 'admin' => 'b3154acf3a344170077d11bdb5fff31532f679a1919e716a02',
  14. ],
  15. ];