forked from suncat2000/MobileDetectBundle
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
43 lines (43 loc) · 1.3 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
{
"name": "netbull/mobile-detect-bundle",
"description": "Symfony 4/5/6 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": ">=7.4|8.*",
"symfony/framework-bundle": "^4.4|^5.0|^6.0|6.4.*",
"mobiledetect/mobiledetectlib": "^2.8",
"twig/twig": "2.*|3.*"
},
"require-dev": {
"phpunit/phpunit": "^8.4|^9.0",
"symfony/phpunit-bridge": "^4.4|^5.0|^6.0|6.4*",
"php-coveralls/php-coveralls": "^2.0.0"
},
"autoload": {
"psr-4": {
"SunCat\\MobileDetectBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SunCat\\MobileDetectBundle\\Tests\\": "Tests/"
}
}
}