-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.14 KB
/
composer.json
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
{
"name": "hyperia/yii2-clear-cache-behavior",
"description": "The behavior for Yii2 to clearing cache on specific events",
"type": "yii2-extension",
"keywords": ["yii2", "behavior", "extension", "cache"],
"require": {
"php": ">=7.1",
"yiisoft/yii2": "*"
},
"license": "MIT",
"support": {
"source": "https://github.com/hyperia-sk/yii2-string-helpers/"
},
"require-dev": {
"symfony/var-dumper": "*"
},
"autoload": {
"psr-4": {
"hyperia\\behaviors\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"hyperia\\behaviors\\tests\\": "tests/"
}
},
"authors": [
{
"name": "Juraj Kalafut",
"email": "juraj.kalafut@bezvafinance.cz"
}
],
"minimum-stability": "stable",
"config": {
"process-timeout": 1800,
"secure-http": false
},
"repositories": [
{
"type": "composer",
"url": "http://packages.hyperia.sk"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}