forked from cetver/yii2-languages-dispatcher
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.14 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
44
45
46
47
48
49
50
51
52
53
{
"name": "cetver/yii2-languages-dispatcher",
"description": "Sets the web-application language for the Yii framework 2.0",
"type": "yii2-extension",
"keywords": [
"yii2",
"extension",
"language",
"locale",
"url",
"query parameter",
"session",
"cookie",
"accept language header",
"user",
"active record",
"default"
],
"license": "BSD-3-Clause",
"support": {
"source": "https://github.com/cetver/yii2-languages-dispatcher",
"issues": "https://github.com/cetver/yii2-languages-dispatcher/issues"
},
"authors": [
{
"name": "Alexandr Cetvertacov",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "^2.0.13"
},
"require-dev": {
"ext-sqlite3": "*",
"codeception/base": "^2.2.3",
"codeception/verify": "~0.3.1",
"codeception/specify": "~0.4.3",
"satooshi/php-coveralls": "^1.0"
},
"config": {
"fxp-asset": {
"installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
},
"autoload": {
"psr-4": {
"cetver\\LanguagesDispatcher\\": ""
}
}
}