infuse / stash
Stash module for Infuse Framework
Installs: 1 444
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.4.0
- tedivm/stash: v0.13.1
Requires (Dev)
- infuse/infuse: ~1.4
- satooshi/php-coveralls: 0.6.1
This package is auto-updated.
Last update: 2024-10-13 08:00:43 UTC
README
Mailer module for Infuse Framework
Installation
Install the package with composer:
composer require infuse/stash
Configuration
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' // ... ]