forked from lajax/yii2-translate-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.21 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
{
"name": "zymeli/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/zymeli/yii2-translate-manager/issues?state=open",
"source": "https://github.com/zymeli/yii2-translate-manager"
},
"authors": [
{
"name": "Lajos Molnar",
"email": "[email protected]"
},
{
"name": "zymeli",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"ext-simplexml": "*",
"yiisoft/yii2": "~2.0.38",
"yiisoft/yii2-bootstrap5": "~2.0.2",
"kartik-v/yii2-widgets": "^3.4",
"kartik-v/yii2-helpers": "^1.3",
"yiisoft/yii2-jui": "~2.0.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.1 | ^3.0"
},
"autoload": {
"psr-4": {
"zymeli\\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"
}
}