-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathConfigProvider.php
More file actions
58 lines (54 loc) · 1.58 KB
/
ConfigProvider.php
File metadata and controls
58 lines (54 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
namespace Hyperf\Cache;
use Hyperf\Cache\Aspect\CacheableAspect;
use Hyperf\Cache\Aspect\CacheAheadAspect;
use Hyperf\Cache\Aspect\CacheEvictAspect;
use Hyperf\Cache\Aspect\CachePutAspect;
use Hyperf\Cache\Aspect\FailCacheAspect;
use Hyperf\Cache\Listener\DeleteListener;
use Psr\SimpleCache\CacheInterface;
class ConfigProvider
{
public function __invoke(): array
{
return [
'dependencies' => [
CacheInterface::class => Cache::class,
],
'listeners' => [
DeleteListener::class,
],
'annotations' => [
'scan' => [
'collectors' => [
CacheListenerCollector::class,
],
],
],
'aspects' => [
CacheableAspect::class,
CacheAheadAspect::class,
CacheEvictAspect::class,
CachePutAspect::class,
FailCacheAspect::class,
],
'publish' => [
[
'id' => 'config',
'description' => 'The config for cache.',
'source' => __DIR__ . '/../publish/cache.php',
'destination' => BASE_PATH . '/config/autoload/cache.php',
],
],
];
}
}