You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.6 KiB
56 lines
1.6 KiB
{
|
|
"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"]
|
|
}
|