-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
39 lines (39 loc) · 957 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
34
35
36
37
38
39
{
"name": "synchro/uasparser",
"type": "library",
"license": "LGPL-2.1",
"description": "UASparser is a PHP parser and classifier for user agent strings presented by HTTP clients using databases from http://user-agent-string.info/.",
"keywords": [
"http",
"parser",
"user-agent"
],
"homepage": "https://github.com/Synchro/UASparser",
"authors": [
{
"name": "Jaroslav Mallat",
"homepage": "http://user-agent-string.info/",
"role": "developer"
},
{
"name": "Marcus Bointon",
"email": "[email protected]",
"homepage": "https://github.com/Synchro",
"role": "developer"
}
],
"require": {
"php": ">=7.3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5.5",
"phpcompatibility/php-compatibility": "^9.3.5",
"phpunit/phpunit": "~9.2.5",
"mikey179/vfsstream": "~1.6"
},
"autoload": {
"psr-4": {
"UAS\\": "UAS/"
}
}
}