aivchen / yii2-simple-cache-adapter
PSR-16 Yii2 适配器
2.0.0
2023-11-22 21:22 UTC
Requires
- php: ^8.2
- psr/simple-cache: ^3.0
- yiisoft/yii2: ^2.0.49
Requires (Dev)
- ergebnis/composer-normalize: ^2.28
- friendsofphp/php-cs-fixer: ^3.38
- phpunit/phpunit: ^10.4
- psalm/plugin-symfony: ^5.1
- rector/rector: ^0.18.10
- vimeo/psalm: ^5.15
- yidas/yii2-composer-bower-skip: ^2.0
This package is auto-updated.
Last update: 2024-09-23 01:06:04 UTC
README
SimpleCache (PSR-16) 到 Yii2 缓存的适配器
此库最初由 devonliu02 和 Wearesho 团队 开发
安装
composer require aivchen/yii2-simple-cache-adapter
用法
<?php use Aivchen\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 ], ]);