File Manager Lite
Dir:
/home/u540325668/domains/sostabazar.in/public_html/schooldemo/config
Upload
[..]
app.php (7.57 KB)
Edit
Rename
Del
auth.php (3.92 KB)
Edit
Rename
Del
broadcasting.php (1.82 KB)
Edit
Rename
Del
constants.php (1.35 KB)
Edit
Rename
Del
cors.php (846 B)
Edit
Rename
Del
dompdf.php (11.21 KB)
Edit
Rename
Del
excel.php (12.09 KB)
Edit
Rename
Del
filesystems.php (2.23 KB)
Edit
Rename
Del
global.php (639 B)
Edit
Rename
Del
hashing.php (1.54 KB)
Edit
Rename
Del
ide-helper.php (11.1 KB)
Edit
Rename
Del
image.php (508 B)
Edit
Rename
Del
installer.php (2.63 KB)
Edit
Rename
Del
logging.php (3.61 KB)
Edit
Rename
Del
mail.php (3.53 KB)
Edit
Rename
Del
permission.php (5.59 KB)
Edit
Rename
Del
sanctum.php (2.24 KB)
Edit
Rename
Del
services.php (1.05 KB)
Edit
Rename
Del
session.php (6.86 KB)
Edit
Rename
Del
update-generator.php (5.2 KB)
Edit
Rename
Del
view.php (1.05 KB)
Edit
Rename
Del
Edit: hashing.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Hash Driver |-------------------------------------------------------------------------- | | This option controls the default hash driver that will be used to hash | passwords for your application. By default, the bcrypt algorithm is | used; however, you remain free to modify this option if you wish. | | Supported: "bcrypt", "argon", "argon2id" | */ 'driver' => 'bcrypt', /* |-------------------------------------------------------------------------- | Bcrypt Options |-------------------------------------------------------------------------- | | Here you may specify the configuration options that should be used when | passwords are hashed using the Bcrypt algorithm. This will allow you | to control the amount of time it takes to hash the given password. | */ 'bcrypt' => [ 'rounds' => env('BCRYPT_ROUNDS', 10), ], /* |-------------------------------------------------------------------------- | Argon Options |-------------------------------------------------------------------------- | | Here you may specify the configuration options that should be used when | passwords are hashed using the Argon algorithm. These will allow you | to control the amount of time it takes to hash the given password. | */ 'argon' => [ 'memory' => 65536, 'threads' => 1, 'time' => 4, ], ];
Simpan