mirror of
https://github.com/jikan-me/jikan-rest.git
synced 2025-02-20 11:23:35 +08:00
14 lines
289 B
PHP
14 lines
289 B
PHP
<?php
|
|
|
|
return [
|
|
'redis' => [
|
|
'client' => 'predis',
|
|
'default' => [
|
|
'host' => env('REDIS_HOST', '127.0.0.1'),
|
|
'password' => env('REDIS_PASSWORD', null),
|
|
'port' => env('REDIS_PORT', 6379),
|
|
'database' => 0
|
|
]
|
|
]
|
|
];
|