-
Notifications
You must be signed in to change notification settings - Fork 156
/
composer.json
39 lines (39 loc) · 1.23 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
{
"name": "suncat/mobile-detect-bundle",
"description": "Symfony2/3/4 bundle for detect mobile devices, managing mobile view types, redirect to mobile version.",
"keywords": ["mobile", "mobile detect", "symfony mobile", "mobile view managing", "mobile redirect"],
"homepage": "https://github.com/suncat2000/MobileDetectBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Nikolay Ivlev",
"email": "[email protected]"
},
{
"name": "Henri Vesala",
"email": "[email protected]"
},
{
"name": "netmikey",
"homepage": "https://github.com/netmikey"
}
],
"require": {
"php": ">=5.5.9",
"symfony/framework-bundle": "~2.7|~3.3|~4.0|~5.0",
"mobiledetect/mobiledetectlib": "~2.8",
"twig/twig": "~1.26|~2.0||^3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35|^5.4.3|^6.0",
"symfony/phpunit-bridge": "~2.7|~3.3|~4.0|~5.0",
"satooshi/php-coveralls": "^2.0.0"
},
"autoload": {
"psr-0": {
"SunCat\\MobileDetectBundle": ""
}
},
"target-dir": "SunCat/MobileDetectBundle"
}