-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
63 lines (63 loc) · 1.51 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "51degrees/fiftyone.devicedetection",
"description": "Device detection engines for 51Degrees Pipeline API. Parse HTTP headers to detect hardware, operating system, browser, and crawler information.",
"keywords":
[
"user agent",
"mobile",
"device",
"browser",
"platform",
"crawler",
"desktop",
"parser",
"devicedetection",
"51degrees",
"wurfl",
"deviceatlas"
],
"authors":
[
{
"name": "51Degrees Engineering",
"email": "[email protected]"
}
],
"license": "EUPL-1.2",
"type": "library",
"require":
{
"php": ">=7.4",
"51degrees/fiftyone.pipeline.core": "4.*",
"51degrees/fiftyone.pipeline.engines": "4.*",
"51degrees/fiftyone.pipeline.cloudrequestengine": "4.*"
},
"require-dev":
{
"phpunit/phpunit": "*",
"friendsofphp/php-cs-fixer": "^3.39",
"phpstan/phpstan": "^1.10"
},
"autoload":
{
"psr-4":
{
"fiftyone\\pipeline\\devicedetection\\": "src/"
}
},
"autoload-dev":
{
"psr-4":
{
"fiftyone\\pipeline\\devicedetection\\tests\\": "tests/",
"fiftyone\\pipeline\\devicedetection\\examples\\cloud\\classes\\": "examples/cloud/classes"
}
},
"config":
{
"allow-plugins":
{
"nodejs-php-fallback/nodejs-php-fallback": false
}
}
}