-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.8 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
{
"name": "digifa/mobile-detect-symfony-bundle",
"description": "Symfony 6.4, 7.x / PHP >= 8.2 bundle to detect mobile devices, manage mobile view and redirect to the mobile and tablet version.",
"minimum-stability": "stable",
"keywords": [
"mobile detect",
"device detect",
"device detector",
"mobile view managing",
"mobiledetect",
"mobiledetectbundle",
"symfony mobile detect",
"symfony mobiledetect",
"symfony"
],
"homepage": "https://github.com/digifa/MobileDetectSymfonyBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Guido Faust",
"email": "[email protected]"
}
],
"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.13 || ^3.0.4"
},
"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": {
"MobileDetectSymfonyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MobileDetectSymfonyBundle\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}