-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcomposer.json
37 lines (37 loc) · 1.16 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
{
"name": "voskobovich/yii2-many-many-behavior",
"description": "This behavior makes it easy to maintain relations many-to-many in the your ActiveRecord model.",
"keywords": ["behavior", "active record", "yii2", "many-to-many", "relation"],
"homepage": "https://github.com/voskobovich/ManyToManyBehavior",
"type": "yii2-behavior",
"license": "MIT",
"support": {
"issues": "https://github.com/voskobovich/ManyToManyBehavior/issues",
"source": "https://github.com/voskobovich/ManyToManyBehavior"
},
"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"
},
"autoload": {
"psr-4": {
"voskobovich\\behaviors\\": "src"
}
},
"require-dev": {
"codeception/codeception": "*",
"yiisoft/yii2-codeception": "^2"
}
}