wearesho-team / yii2-simple-cache-adapter
1.1.0
2020-06-17 00:24 UTC
Requires
- php: >=7.4
- psr/simple-cache: ^1.0
- yiisoft/yii2: ^2.0.35
Requires (Dev)
- cache/integration-tests: ^0.16.0
- phpunit/phpunit: ^9.2
- squizlabs/php_codesniffer: ^3.2
This package is auto-updated.
Last update: 2024-09-17 09:18:00 UTC
README
SimpleCache (PSR-16) 适配器用于 Yii2 缓存
该库最初由 devonliu02 开发,现在由 Wearesho Team 维护
安装
composer require wearesho-team/yii2-simple-cache-adapter
使用
<?php use Wearesho\SimpleCache; $adapter = new SimpleCache\Adapter; // will use \Yii::$app->cache by default $customAdapter = new SimpleCache\Adapter([ 'cache' => [ 'class' => \yii\caching\ArrayCache::class, // or your custom \yii\caching\CacheInterface implementation ], ]);