Mailer module for Infuse Framework
Install the package with composer:
composer require infuse/stash
Add this to your config.php
:
'cache' => [
'namespace' => 'namespace',
'driver' => 'Stash\\Driver\\Predis',
'options' => [
'scheme' => 'tcp',
'host' => '127.0.0.1',
'port' => 6379
]
]
Add the services to your app's configuration:
'services' => [
// ...
'stash' => 'Infuse\Stash\Stash',
'stash_driver' => 'Infuse\Stash\StashDriver'
// ...
]