-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.05 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
{
"name": "candasm/yii1-mobile-detect-component",
"description": "MobileDetect library for YiiFramework 1.x",
"keywords": [
"yii extension",
"yii mobile detect",
"yii component",
"mobile detect",
"yii framework mobile detect component"
],
"license": "MIT",
"type": "yii-extension",
"version": "1.0.2",
"authors": [
{
"name": "Candas Minareci",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"yiisoft/yii": "~1.1.14",
"mobiledetect/mobiledetectlib": "~2.7"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"squizlabs/php_codesniffer": "~2.8",
"phpunit/php-invoker": "^1.1",
"phpunit/phpunit-story": "^1.0",
"phpunit/dbunit": "~1.2",
"phpunit/phpunit-selenium": "~1.4.2",
"satooshi/php-coveralls": "^1.0"
},
"autoload": {
"psr-4": {
"Yii1MobileDetectComponent\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yii1MobileDetectComponent\\Tests\\": "tests/"
}
},
"config": {
"vendor-dir": "protected/vendor/"
}
}