-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
49 lines (49 loc) · 1.31 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
49
{
"name": "voskobovich/yii2-linker-behavior",
"description": "This behavior makes it easy to maintain many-to-many and one-to-many relations in your ActiveRecord models.",
"keywords": [
"behavior",
"ar",
"active record",
"yii2",
"many-to-many",
"one-to-many",
"relations"
],
"homepage": "https://github.com/voskobovich/yii2-linker-behavior",
"type": "yii2-behavior",
"license": "MIT",
"support": {
"issues": "https://github.com/voskobovich/yii2-linker-behavior/issues",
"source": "https://github.com/voskobovich/yii2-linker-behavior"
},
"authors": [
{
"name": "Vitaly Voskobovich",
"email": "[email protected]",
"homepage": "http://voskobovich.com"
},
{
"name": "Konstantin Sirotkin",
"email": "[email protected]",
"homepage": "http://beowulfenator.github.io"
}
],
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "~2.0.13"
},
"autoload": {
"psr-4": {
"voskobovich\\linker\\": "src",
"voskobovich\\linker\\interfaces\\": "src/interfaces",
"voskobovich\\linker\\updaters\\": "src/updaters"
}
},
"require-dev": {
"codeception/codeception": "*",
"yiisoft/yii2-codeception": "~2.0.0",
"yiisoft/yii2-coding-standards": "~2.0.2",
"friendsofphp/php-cs-fixer": "^2"
}
}