-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
76 lines (76 loc) · 1.99 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
{
"name": "mimmi20/ua-device-type",
"description": "a class collection for different device types",
"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/ua-device-type/graphs/contributors"
}
],
"homepage": "https://github.com/mimmi20/ua-device-type",
"support": {
"issues": "https://github.com/mimmi20/ua-device-type/issues",
"source": "https://github.com/mimmi20/ua-device-type"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
},
"require-dev": {
"ext-ctype": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"ext-tokenizer": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
"infection/infection": "^0.27.11 || ^0.28.1 || ^0.29.0",
"mimmi20/coding-standard": "^5.2.44",
"nikic/php-parser": "^4.19.1 || ^5.0.2",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12.7",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpunit/phpunit": "^10.5.26",
"rector/rector": "^1.2.8",
"rector/type-perfect": "^1.0.0",
"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": {
"UaDeviceType\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UaDeviceTypeTest\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"lock": false,
"preferred-install": "dist",
"sort-packages": true
}
}