forked from sinergi/php-browser-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 873 Bytes
/
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
{
"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": "[email protected]"
},
{
"name": "Chris Schuld"
}
],
"require": {
"php": "^5.3.3 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.0"
},
"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
}