forked from WhichBrowser/Parser-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (40 loc) · 1.1 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
{
"name": "whichbrowser/parser",
"description": "Useragent sniffing library for PHP",
"keywords": ["useragent","browser","sniffing", "ua"],
"homepage": "http://whichbrowser.net",
"license": "MIT",
"authors": [
{
"name": "Niels Leenheer",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"psr/cache": "^1.0"
},
"autoload": {
"psr-4": {
"WhichBrowser\\": [ "src/", "tests/src/" ]
}
},
"require-dev": {
"symfony/yaml": "^2.7",
"league/csv": "^8.0",
"phpdocumentor/reflection-docblock": "^2.0",
"phpunit/php-code-coverage": "^2.2|^3.0",
"phpunit/PHPUnit": "^4.0",
"satooshi/php-coveralls": "^0.6",
"icomefromthenet/reverse-regex" : "dev-master",
"cache/array-adapter": "^0.4",
"squizlabs/php_codesniffer": "2.5.*"
},
"autoload-dev": {
"psr-4": {
"WhichBrowserTest\\": "tests/unit"
},
"files": [ "tests/src/polyfills.php" ]
}
}