forked from Hogewind/Browscap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 2.19 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
{
"name": "crossjoin/browscap",
"type": "library",
"description": "The standalone PHP Browscap parser Crossjoin\\Browscap detects browser properties as well as device information based on the user agent string of the requesting browsers and search engines, using the data from the Browser Capabilities Project. It's several hundred times faster than the build-in PHP function get_browser(), and faster than other Browscap PHP libraries, with much lower memory consumption. Optionally Crossjoin\\Browscap automatically updates the Browscap data, so you're always up-to-date. The newest version is build for PHP 7.x, for PHP >= 5.6 use version 2.x, for PHP >= 5.3 use version 1.x.",
"keywords": [
"php",
"get_browser",
"browscap",
"browser",
"browser capabilities",
"browser detection",
"browser sniffing",
"crawler",
"crawler detection",
"device",
"device detection",
"user agent",
"user agent spoofing",
"user agent sniffing"
],
"homepage": "https://github.com/crossjoin/Browscap",
"license": "MIT",
"authors": [
{
"name": "Christoph Ziegenberg",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/crossjoin/Browscap/issues",
"source": "https://github.com/crossjoin/Browscap"
},
"require": {
"php": "^7.2",
"guzzlehttp/guzzle": "^6.5",
"symfony/console": "^5.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"ext-sqlite3" : "*",
"phpunit/phpunit" : "^8.5.0"
},
"suggest": {
"ext-pdo_sqlite": "Either the 'pdo_sqlite' or the 'sqlite3' extension is required.",
"ext-sqlite3" : "Either the 'pdo_sqlite' or the 'sqlite3' extension is required."
},
"autoload": {
"psr-4": {
"Crossjoin\\Browscap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Crossjoin\\Browscap\\Tests\\Unit\\": "tests/unit/",
"Crossjoin\\Browscap\\Tests\\Mock\\": "tests/mock/"
}
},
"bin": [
"scripts/browscap"
]
}