1
0
Fork 0
wow-raid-bingo/config/hashids.php
2021-10-18 11:56:52 +02:00

37 lines
964 B
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| Default Connection Name
|--------------------------------------------------------------------------
|
| Here you may specify which of the connections below you wish to use as
| your default connection for all work. Of course, you may use many
| connections at once using the manager class.
|
*/
'default' => 'main',
/*
|--------------------------------------------------------------------------
| Hashids Connections
|--------------------------------------------------------------------------
|
| Here are each of the connections setup for your application.
|
*/
'connections' => [
'main' => [
'salt' => env('APP_KEY'),
'length' => 32,
'alphabet' => 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'
],
],
];