-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
44 lines (44 loc) · 1.08 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
{
"name": "devgroup/yii2-tag-dependency-helper",
"description": "Helper for unifying cache tag names with invalidation support in yii2",
"type": "yii2-extension",
"keywords": ["yii2","cache"],
"license": "MIT",
"authors": [
{
"name": "Alexander Kozhevnikov",
"email": "[email protected]"
},
{
"name": "Evgeny Dubovitsky",
"email": "[email protected]"
},
{
"name": "Pavel Fedotov",
"email": "[email protected]"
},
{
"name": "Salikh Fakhrutdinov",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.5.0",
"yiisoft/yii2": "~2.0.6"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/dbunit": "~1.0"
},
"autoload": {
"psr-4": {
"DevGroup\\TagDependencyHelper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevGroup\\TagDependencyHelper\\tests\\": "tests/"
}
}
}