forked from Hogewind/Browscap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 1.36 KB
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 1.36 KB
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
{
"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. It supports PHP 5.3 to PHP 7.0 (PHP 5.5+ recommended).",
"keywords": ["get_browser", "browser", "browscap", "client", "detection", "capabilities", "user agent", "php", "device", "properties"],
"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": ">=5.3.0"
},
"suggest": {
"php": ">=5.5.0"
},
"autoload": {
"psr-4": {
"Crossjoin\\Browscap\\": "src/Crossjoin/Browscap/"
}
}
}