-
Notifications
You must be signed in to change notification settings - Fork 82
/
composer.json
80 lines (80 loc) · 2.31 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
{
"name": "browscap/browscap-php",
"description": "Standalone replacement for php's native get_browser() function",
"license": "MIT",
"type": "library",
"keywords": [
"get_browser",
"browser",
"capabilities",
"user agent"
],
"authors": [
{
"name": "Jonathan Stoppani",
"email": "[email protected]"
},
{
"name": "James Titcumb",
"email": "[email protected]"
},
{
"name": "Thomas Mueller",
"email": "[email protected]"
}
],
"homepage": "https://github.com/browscap/browscap-php",
"support": {
"issues": "https://github.com/browscap/browscap-php/issues",
"source": "https://github.com/browscap/browscap-php"
},
"require": {
"php": ">=7.4.3,<8.2.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.4.5",
"league/flysystem": "^2.4.5 || ^3.0.18",
"matthiasmullie/scrapbook": "^1.4.8",
"monolog/monolog": "^2.5.0 || ^3.0.0",
"psr/log": "^1.1.4 || ^2.0.0 || ^3.0.0",
"psr/simple-cache": "^1.0.1 || ^2.0.0 || ^3.0.0",
"symfony/console": "^v5.4.8 || ^v6.0.8",
"symfony/filesystem": "^v5.4.7 || ^v6.0.7"
},
"require-dev": {
"doctrine/coding-standard": "^9.0.0",
"mikey179/vfsstream": "^v1.6.10",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan": "^1.6.3",
"phpstan/phpstan-beberlei-assert": "^1.0.1",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpunit/phpunit": "^9.5.20"
},
"suggest": {
"ext-curl": "to use curl requests to get the ini file"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"BrowscapPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrowscapPHPTest\\": "tests/"
}
},
"bin": [
"bin/browscap-php"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
}
}