-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
96 lines (96 loc) · 2.75 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
{
"name": "mimmi20/browscap-helper",
"description": "some small helper functions for working with Browscap",
"license": "MIT",
"authors": [
{
"name": "Thomas Müller",
"homepage": "https://github.com/mimmi20",
"role": "Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/mimmi20/browscap-helper/graphs/contributors"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"browscap/browscap": "6.1.x-dev as 6.1.7",
"donatj/phpuseragentparser": "^1.9.0",
"ergebnis/json": "^1.3.0",
"ergebnis/json-normalizer": "^4.6.0",
"jaybizzle/crawler-detect": "^1.2.120",
"matomo/device-detector": "dev-master",
"mimmi20/browscap-helper-source": "^4.0.5",
"mimmi20/browser-detector": "^8.0.5",
"mimmi20/browser-detector-version": "^9.0.8",
"mimmi20/ua-device-type": "^9.0.7",
"mobiledetect/mobiledetectlib": "^4.8.06",
"psr/log": "^3.0.0",
"psr/simple-cache": "^3.0.0",
"symfony/console": "^6.4.8",
"symfony/finder": "^6.4.8",
"symfony/yaml": "^6.4.8",
"whichbrowser/parser": "^2.1.8",
"woothee/woothee-testset": "^1.13.0"
},
"require-dev": {
"ext-ctype": "*",
"ext-dom": "*",
"ext-tokenizer": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
"mimmi20/coding-standard": "^5.2.44",
"nikic/php-parser": "^5.0.2",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12.7",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"rector/rector": "^1.2.8",
"rector/type-perfect": "^1.0.0",
"symfony/http-foundation": "^6.4.8",
"symplify/phpstan-rules": "^13.0.1",
"tomasvotruba/cognitive-complexity": "^0.2.3",
"tomasvotruba/type-coverage": "^1.0.0",
"tomasvotruba/unused-public": "^1.0.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"BrowscapHelper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrowscapHelperTest\\": "tests/"
}
},
"bin": [
"bin/browscap-helper.php"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"lock": false,
"preferred-install": {
"browscap/browscap": "source",
"donatj/phpuseragentparser": "source",
"jaybizzle/crawler-detect": "source",
"matomo/device-detector": "source",
"mimmi20/browser-detector": "source",
"mobiledetect/mobiledetectlib": "source",
"whichbrowser/parser": "source",
"woothee/woothee-testset": "source",
"zsxsoft/php-useragent": "source",
"*": "dist"
},
"sort-packages": true
}
}