This repository was archived by the owner on Feb 13, 2026. It is now read-only.
forked from tattali/MobileDetectBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 2.22 KB
/
Copy pathcomposer.json
File metadata and controls
78 lines (78 loc) · 2.22 KB
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
74
75
76
77
78
{
"name": "digifa/mobile-detect-bundle",
"description": "Symfony 6.4, 7.0 / PHP 8.2 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/digifa/MobileDetectBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Guido Faust",
"email": "gfaust@digifa.de"
},
{
"name": "Théo Attali",
"email": "theoattali@gmail.com"
},
{
"name": "Nikolay Ivlev",
"email": "nikolay.kotovsky@gmail.com"
},
{
"name": "Henri Vesala",
"email": "henri.vesala@gmail.com"
},
{
"name": "netmikey",
"homepage": "https://github.com/netmikey"
}
],
"require": {
"php": ">=8.2",
"mobiledetect/mobiledetectlib": "^4.8",
"symfony/dependency-injection": "^6.4||^7.0",
"symfony/event-dispatcher": "^6.4||^7.0",
"symfony/framework-bundle": "^6.4||^7.0",
"symfony/yaml": "^6.4||^7.0",
"twig/twig": "^2.0 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4 || ^3.8",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5",
"rector/rector": "^1.2",
"squizlabs/php_codesniffer": "^3.6",
"symfony/dotenv": "^6.4||^7.0",
"symfony/phpunit-bridge": "^6.4||^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/"
}
}
}