-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
38 lines (38 loc) · 883 Bytes
/
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
{
"name": "arogachev/yii2-many-to-many",
"description": "Many-to-many ActiveRecord relation for Yii 2 framework",
"keywords": [
"yii2",
"many-to-many",
"relation",
"behavior",
"validator"
],
"homepage": "https://github.com/arogachev/yii2-many-to-many",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexey Rogachev",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "~2.0.15"
},
"require-dev": {
"phpunit/phpunit": "~7.1",
"phpunit/dbunit": "~4.0"
},
"autoload": {
"psr-4": {
"arogachev\\ManyToMany\\": ""
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}