-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 745 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 745 Bytes
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
{
"name": "foroco/php-browser-detection",
"type": "library",
"description": "Ultra fast PHP library to detect browser, OS, platform and device type by User-Agent parsing",
"keywords": ["user-agent","php","browser","detection","environment","useragent"],
"homepage": "https://github.com/foroco/php-browser-detection",
"license": "MIT",
"authors": [
{
"name": "Artem Murugov",
"email": "murugov@gmail.com",
"homepage": "https://github.com/foroco/",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"minimum-stability": "dev",
"autoload": {
"classmap": [
"src/BrowserDetection.php"
]
}
}