-
Notifications
You must be signed in to change notification settings - Fork 90
/
composer.json
34 lines (34 loc) · 996 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": "lajax/yii2-translate-manager",
"description": "Translation management extension for Yii 2",
"type": "yii2-extension",
"keywords": ["yii2", "extension", "translate", "language", "module"],
"license": "MIT",
"support": {
"issues": "https://github.com/lajax/yii2-translate-manager/issues?state=open",
"source": "https://github.com/lajax/yii2-translate-manager"
},
"authors": [
{
"name": "Lajos Molnar",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "~2.0.0",
"yiisoft/yii2-jui": "~2.0.0",
"yiisoft/yii2-bootstrap": "~2.0.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.1"
},
"autoload": {
"psr-4": {
"lajax\\translatemanager\\": ""
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix --config=.php_cs",
"cs-fix-dry-run": "php-cs-fixer fix --config=.php_cs --dry-run --diff"
}
}