forked from browscap/browscap-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 1.84 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
{
"name": "veronalabs/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.3.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.4.5",
"league/flysystem": "^2.4.5",
"matthiasmullie/scrapbook": "^1.4.8",
"psr/log": "^1.1.4",
"psr/cache": "~1.0",
"psr/simple-cache": "^1.0",
"symfony/console": "^v5.4.8",
"symfony/filesystem": "^v5.4.7"
},
"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
}
}