forked from neilime/zf2-browscap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 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
{
"name": "neilime/zf2-browscap",
"type": "library",
"description": "ZF2 Browscap is a Zend Framework 2 module that provides an improved 'get_browser' function. This module could be standalone if 'browscap' configuration setting in php.ini is undefined or does not point to the correct location of the browscap.ini file",
"keywords": ["Zend Framework 2","browscap","browser capabilities","get_browser", "standalone"],
"homepage": "https://github.com/neilime/zf2-browscap",
"license": "MIT",
"authors": [
{
"name": "Neilime",
"homepage": "https://github.com/neilime",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/neilime/zf2-browscap/issues"
},
"minimum-stability" : "stable",
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "2.*@stable"
},
"autoload": {
"psr-0": {
"Neilime\\Browscap": "src"
},
"classmap" : ["Module.php"]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}