PHP code example of in7rude / laravel-fuelphp-hashing
1. Go to this page and download the library: Download in7rude/laravel-fuelphp-hashing library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
in7rude / laravel-fuelphp-hashing example snippets
//Illuminate\Hashing\HashServiceProvider::class,
in7rude\LaravelFuelphpHashing\HashServiceProvider::class,
return [
'auth' => [
'salt' => env('FUELPHP_AUTH_SALT', ''),
'iterations' => env('FUELPHP_AUTH_ITERATIONS', 10000),
],
];