forked from netbull/MobileDetectBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
73 lines (73 loc) · 2.09 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "kelnei/mobile-detect-bundle",
"description": "Symfony 6.x-7.x bundle to detect mobile devices, manage mobile view and redirect to the mobile and tablet version.",
"keywords": [
"mobile detect",
"device detect",
"device detector",
"mobile view managing",
"mobiledetect",
"mobiledetectbundle",
"symfony mobile detect",
"symfony mobiledetect",
"symfony"
],
"homepage": "https://github.com/tattali/MobileDetectBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Théo Attali",
"email": "[email protected]"
},
{
"name": "Nikolay Ivlev",
"email": "[email protected]"
},
{
"name": "Henri Vesala",
"email": "[email protected]"
},
{
"name": "netmikey",
"homepage": "https://github.com/netmikey"
}
],
"require": {
"php": ">=8.1",
"mobiledetect/mobiledetectlib": "^4.8",
"symfony/dependency-injection": "^6.0 || ^7.0",
"symfony/event-dispatcher": "^6.0 || ^7.0",
"symfony/framework-bundle": "^6.0 || ^7.0",
"symfony/yaml": "^6.0 | ^7.0",
"twig/twig": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4 || ^3.8",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.6 || ^10.5",
"squizlabs/php_codesniffer": "^3.6",
"symfony/dotenv": "^6.0 || ^7.0",
"symfony/phpunit-bridge": "^6.0 || ^7.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true
}
},
"autoload": {
"psr-4": {
"MobileDetectBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MobileDetectBundle\\Tests\\": "tests/"
}
}
}