xgbnl / dingo
Foundation
dev-main
2023-09-05 07:58 UTC
Requires
- php: ^8.2.10
- ext-redis: *
Requires (Dev)
- illuminate/console: ^10.21
- illuminate/database: ^10.13.5
- illuminate/http: ^10.13.5
- illuminate/redis: ^10.13.5
- illuminate/support: ^10.13.5
- phpunit/phpunit: ^10.2
This package is auto-updated.
Last update: 2025-01-05 10:51:48 UTC
README
About Elephant
To customize the connection for your cache driver, please invoke the withConnection
method of RedisClient
within the ServiceProvider
.
namespace App\Providers; use Elephant\Support\Facades\RedisClient; class ServiceProvider { public function register():void { RedisClient::withConnection('custom_connection'); } }