infuse / stash
Infuse Framework 的 Stash 模块
1.1
2016-08-27 21:24 UTC
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-09-13 07:46:33 UTC
README
Infuse Framework 的邮件模块
安装
使用 composer 安装此包
composer require infuse/stash
配置
将此添加到您的 config.php
'cache' => [ 'namespace' => 'namespace', 'driver' => 'Stash\\Driver\\Predis', 'options' => [ 'scheme' => 'tcp', 'host' => '127.0.0.1', 'port' => 6379 ] ]
将服务添加到您的应用配置中
'services' => [ // ... 'stash' => 'Infuse\Stash\Stash', 'stash_driver' => 'Infuse\Stash\StashDriver' // ... ]