34 lines
864 B
JSON
34 lines
864 B
JSON
|
{
|
||
|
"name": "sinergi/browser-detector",
|
||
|
"description": "Detecting the user's browser, operating system and language.",
|
||
|
"keywords": ["browser", "os", "operating system", "language", "detection"],
|
||
|
"license": "MIT",
|
||
|
"authors": [
|
||
|
{
|
||
|
"name": "Gabriel Bull",
|
||
|
"email": "me@gabrielbull.com"
|
||
|
},
|
||
|
{
|
||
|
"name": "Chris Schuld"
|
||
|
}
|
||
|
],
|
||
|
"require": {
|
||
|
"php": ">=7.2"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"phpunit/phpunit": "^8.0 || ^9.4"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"Sinergi\\BrowserDetector\\": "src"
|
||
|
}
|
||
|
},
|
||
|
"autoload-dev": {
|
||
|
"psr-4": {
|
||
|
"Sinergi\\BrowserDetector\\Tests\\": ["tests/BrowserDetector/Tests", "tests/BrowserDetector/Tests/_includes"]
|
||
|
}
|
||
|
},
|
||
|
"minimum-stability": "dev",
|
||
|
"prefer-stable": true
|
||
|
}
|