forked from browscap/browscap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
90 lines (90 loc) · 2.39 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
{
"name": "browscap/browscap",
"type": "application",
"description": "Browser Capabilities Tools",
"keywords": [
"browscap"
],
"homepage": "https://github.com/browscap/browscap",
"license": "MIT",
"authors": [
{
"name": "Joshua Estes",
"email": "[email protected]",
"homepage": "http://joshuaestes.me"
},
{
"name": "James Titcumb",
"email": "[email protected]",
"homepage": "http://www.jamestitcumb.com"
},
{
"name": "Thomas Müller",
"homepage": "https://github.com/mimmi20",
"role": "Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/browscap/browscap/graphs/contributors"
}
],
"require": {
"php": "^7.1.3",
"ext-json": "*",
"beberlei/assert": "^3.2.7",
"ergebnis/json-normalizer": "^0.11.0 || ^0.12.0",
"mimmi20/json-class": "~2.0.11",
"mimmi20/ua-browser-type": "^7.0.10",
"mimmi20/ua-device-type": "^7.1.9",
"monolog/monolog": "^1.25.4 || ^2.1.0",
"seld/jsonlint": "^1.8.0",
"symfony/console": "^4.4.8 || ^5.0.8",
"symfony/finder": "^4.4.8 || ^5.0.8",
"twig/twig": "^2.12.5 || ^3.0.3"
},
"require-dev": {
"ext-zip": "*",
"browscap/browscap-php": "^4.2.2 || ^5.0.0",
"ergebnis/composer-normalize": "^2.5.1",
"ergebnis/phpstan-rules": "^0.15.0",
"friendsofphp/php-cs-fixer": "^2.16.3",
"mikey179/vfsstream": "^1.6.8",
"pepakriz/phpstan-exception-rules": "^0.11.1",
"phpstan/phpstan": "^0.12.25",
"phpstan/phpstan-beberlei-assert": "^0.12.2",
"phpstan/phpstan-deprecation-rules": "^0.12.3",
"phpstan/phpstan-phpunit": "^0.12.8",
"phpstan/phpstan-strict-rules": "^0.12.2",
"phpunit/phpunit": "^7.5.20 || ^8.5.5 || ^9.1.5"
},
"suggest": {
"ext-zip": "to create a zip file containing all other generated files"
},
"config": {
"platform": {
"php": "7.1.3"
},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Browscap\\": "src/Browscap/"
}
},
"autoload-dev": {
"psr-4": {
"BrowscapTest\\": "tests/BrowscapTest/",
"UserAgentsTest\\": "tests/UserAgentsTest/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"bin": [
"bin/browscap"
],
"support": {
"issues": "https://github.com/browscap/browscap/issues",
"source": "https://github.com/browscap/browscap"
}
}