infuse/stash

Infuse Framework 的 Stash 模块

1.1 2016-08-27 21:24 UTC

This package is auto-updated.

Last update: 2024-09-13 07:46:33 UTC


README

Build Status Coverage Status Latest Stable Version Total Downloads HHVM Status

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'
	// ...
]