-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
34 lines (34 loc) · 884 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
{
"name": "oxyaction/yii2-polymorphic-relation-behavior",
"description": "Establishes polymorphic relations",
"homepage": "/~https://github.com/Oxyaction/yii2-polymorphic-relation-behavior",
"keywords": ["yii2", "yii 2", "polymorphic", "relation", "behavior", "behaviour"],
"license": "MIT",
"type": "yii2-extension",
"authors": [
{
"name": "Alexander Kompaniets",
"email": "alexkomp.ua@gmail.com"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"yiisoft/yii2": "^2.0.0",
"phpunit/phpunit": "*"
},
"suggest": {
"yiisoft/yii2": "^2.0.0"
},
"autoload": {
"psr-4": {
"oxyaction\\behaviors\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"oxyaction\\behaviors\\tests\\": "tests/"
}
}
}