forked from tattali/MobileDetectBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.79 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.79 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
{
"name": "tattali/mobile-detect-bundle",
"description": "Symfony 8.0 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": "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.4.19",
"mobiledetect/mobiledetectlib": "^4.8",
"twig/twig": "^3.24"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.92",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-nette": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.5",
"squizlabs/php_codesniffer": "^4.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/"
}
}
}