-
Notifications
You must be signed in to change notification settings - Fork 82
/
composer.json
80 lines (80 loc) · 2.29 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": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.8.0",
"league/flysystem": "^3.21.0",
"matthiasmullie/scrapbook": "^1.5.1",
"monolog/monolog": "^3.5.0",
"psr/log": "^2.0.0 || ^3.0.0",
"psr/simple-cache": "^2.0.0 || ^3.0.0",
"symfony/console": "^6.4.0 || ^7.0.0",
"symfony/filesystem": "^6.4.0 || ^7.0.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"mikey179/vfsstream": "^1.6.11",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.43",
"phpstan/phpstan-beberlei-assert": "^1.1.2",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-phpunit": "^1.3.15",
"phpunit/phpunit": "^10.4.2"
},
"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
}
}