-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
43 lines (43 loc) · 1.02 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
{
"name": "lav45/yii2-translated-behavior",
"description": "This extension allows you to quickly and simple enough to add translations for any ActiveRecord models.",
"keywords": [
"yii2",
"extension",
"behavior",
"translated"
],
"homepage": "https://github.com/lav45/yii2-translated-behavior",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexey Loban",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"yiisoft/yii2": "^2.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "4 - 5",
"phpunit/dbunit": "*"
},
"autoload": {
"psr-4": {
"lav45\\translate\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.4.x-dev"
}
}
}