forked from browscap/browscap-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.56 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
{
"name": "browscap/browscap-php",
"type": "library",
"description": "Standalone replacement for php's native get_browser() function",
"keywords": ["get_browser", "browser", "capabilities", "user agent"],
"homepage": "https://github.com/browscap/browscap-php",
"license": "MIT",
"authors": [
{
"name": "Jonathan Stoppani",
"email": "jonathan.stoppani@gmail.com"
},
{
"name": "James Titcumb",
"email": "james@asgrim.com"
},
{
"name": "Thomas Mueller",
"email": "t_mueller_stolzenhain@yahoo.de"
}
],
"support": {
"issues": "https://github.com/browscap/browscap-php/issues",
"source": "https://github.com/browscap/browscap-php"
},
"require": {
"php": "^5.6 || ^7.0",
"mimmi20/wurflcache": "^1.3",
"guzzlehttp/guzzle": "^6.2",
"symfony/filesystem": "^2.6 || ^3.0",
"symfony/finder": "^2.6 || ^3.0",
"symfony/console": "^2.6 || ^3.0",
"monolog/monolog": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^5.3",
"mikey179/vfsStream": "^1.6",
"squizlabs/php_codesniffer": "^2.5",
"friendsofphp/php-cs-fixer": "^1.11"
},
"suggest": {
"ext-curl": "to use curl requests to get the ini file"
},
"autoload": {
"psr-4": {
"BrowscapPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrowscapPHPTest\\": "tests/"
}
},
"bin": ["bin/browscap-php"]
}