-
Notifications
You must be signed in to change notification settings - Fork 507
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.89 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.89 KB
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
{
"name": "matomo/device-detector",
"type": "library",
"description": "The Universal Device Detection library, that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, media players, mobile apps, feed readers, libraries, etc), operating systems, devices, brands and models.",
"keywords": ["useragent","parser","devicedetection"],
"homepage": "https://matomo.org",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "The Matomo Team",
"email": "hello@matomo.org",
"homepage": "https://matomo.org/team/"
}
],
"support": {
"forum": "https://forum.matomo.org/",
"issues": "https://github.com/matomo-org/device-detector/issues",
"wiki": "https://dev.matomo.org/",
"source": "https://github.com/matomo-org/matomo"
},
"autoload": {
"psr-4": { "DeviceDetector\\": "" },
"exclude-from-classmap": ["Tests/"]
},
"require": {
"php": "^7.2|^8.0",
"mustangostang/spyc": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5.2 || ^9 || ^10 || ^11 || ^12 || ^13",
"psr/cache": "^1.0.1 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0.1 || ^2.0 || ^3.0",
"matthiasmullie/scrapbook": "^1.4.7",
"phpstan/phpstan": "^1.10.44",
"mayflower/mo4-coding-standard": "^v9.0.0",
"slevomat/coding-standard": "<8.16.0",
"symfony/yaml": "^5.1.7"
},
"suggest": {
"ext-yaml": "Necessary for using the Pecl YAML parser"
},
"scripts": {
"php-cs-fixed": "php vendor/bin/phpcbf"
},
"archive": {
"exclude": ["/autoload.php"]
},
"replace": {
"piwik/device-detector":"self.version"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}