-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
97 lines (97 loc) · 2.73 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "mimmi20/browser-detector",
"description": "Library to detect Browsers and Devices",
"license": "MIT",
"type": "library",
"keywords": [
"Browser",
"user agent",
"http",
"parser",
"user-agent"
],
"authors": [
{
"name": "Thomas Müller",
"homepage": "https://github.com/mimmi20",
"role": "Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/mimmi20/BrowserDetector/graphs/contributors"
}
],
"homepage": "https://github.com/mimmi20/BrowserDetector",
"support": {
"issues": "https://github.com/mimmi20/BrowserDetector/issues",
"source": "https://github.com/mimmi20/BrowserDetector"
},
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-json": "*",
"ext-mbstring": "*",
"laminas/laminas-diactoros": "^3.5.0",
"mimmi20/browser-detector-version": "^11.0.0",
"mimmi20/ios-build": "^4.0.0",
"mimmi20/macos-build": "^4.0.0",
"mimmi20/ua-browser-type": "^10.0.0",
"mimmi20/ua-device-type": "^10.0.0",
"mimmi20/ua-generic-request": "^9.0.1",
"mimmi20/ua-loader-interface": "^3.0.0",
"mimmi20/ua-normalizer": "^7.0.0",
"mimmi20/ua-parser-interface": "^1.0.0",
"mimmi20/ua-result": "^10.0.3",
"psr/http-message": "^2.0",
"psr/log": "^3.0.2",
"psr/simple-cache": "^3.0.0"
},
"require-dev": {
"ext-ctype": "*",
"ext-dom": "*",
"ext-intl": "*",
"ext-simplexml": "*",
"ext-tokenizer": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
"infection/infection": "^0.29.10",
"mikey179/vfsstream": "^1.6.12",
"mimmi20/coding-standard": "^6.0.2",
"nikic/php-parser": "^5.4.0",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.1",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"phpstan/phpstan-phpunit": "^2.0.3",
"phpunit/phpunit": "^11.5.2",
"rector/rector": "^2.0.6",
"rector/type-perfect": "^2.0.2",
"shipmonk/composer-dependency-analyser": "^1.8.2",
"symfony/process": "^7.2.0",
"symplify/phpstan-rules": "^14.2.3",
"tomasvotruba/cognitive-complexity": "^1.0.0",
"tomasvotruba/type-coverage": "^2.0.2",
"tomasvotruba/unused-public": "^2.0.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"BrowserDetector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrowserDetectorTest\\": "tests/DetectorTest/",
"UserAgentsTest\\": "tests/UserAgentsTest/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"lock": false,
"preferred-install": "dist",
"sort-packages": true
}
}