Welcome to mirror list, hosted at ThFree Co, Russian Federation.

composer.json - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cec2176dfc298712dbc499adbdfe985fe51fee98 (plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
    "name": "piwik/piwik",
    "type": "application",
    "description": "the leading free/libre analytics platform",
    "keywords": ["piwik","matomo","web","analytics"],
    "homepage": "https://matomo.org",
    "license": "GPL-3.0+",
    "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/matomo/issues",
        "wiki": "https://github.com/matomo-org/matomo/wiki",
        "source": "https://github.com/matomo-org/matomo"
    },
    "config":{
        "platform": {
            "php": "7.2.5"
        },
        "prepend-autoloader": false,
        "sort-packages": true
    },
    "require": {
        "php": ">=7.2.5",
        "composer/semver": "~1.3.0",
        "davaxi/sparkline": "~1.2",
        "geoip2/geoip2": "^2.8",
        "leafo/lessphp": "dev-php74-compat",
        "matomo-org/jshrink": "1.3.1",
        "matomo/cache": "~2.0",
        "matomo/decompress": "~2.0",
        "matomo/ini": "~2.0",
        "matomo/matomo-php-tracker": "dev-4.x-dev",
        "matomo/network": "~2.0",
        "matomo/referrer-spam-blacklist": "^3.11",
        "matomo/searchengine-and-social-list": "~3.0",
        "monolog/monolog": "~1.11",
        "mustangostang/spyc": "~0.6.0",
        "pear/pear_exception": "~1.0.0",
        "php-di/php-di": "^5.0.0",
        "phpmailer/phpmailer": "^6.1",
        "piwik/device-detector": "~3.0",
        "psr/log": "~1.0",
        "symfony/console": "~2.6.0",
        "symfony/event-dispatcher": "~2.6.0",
        "symfony/monolog-bridge": "~2.6.0",
        "szymach/c-pchart": "^2.0",
        "tecnickcom/tcpdf": "~6.0",
        "twig/twig": "^3.0"
    },
    "require-dev": {
        "lox/xhprof": "dev-master",
        "phpunit/phpunit": "~8.5",
        "symfony/var-dumper": "~2.6.0",
        "symfony/yaml": "~2.6.0"
    },
    "repositories": [
        {
            "type": "package",
            "package": {
                "name": "matomo-org/jshrink",
                "description": "Javascript Minifier built in PHP",
                "keywords": ["minifier","javascript"],
                "homepage": "http://github.com/tedious/JShrink",
                "type": "library",
                "license": "BSD-3-Clause",
                "version": "1.3.1",
                "authors": [
                    {
                        "name": "Robert Hafner",
                        "email": "tedivm@tedivm.com"
                    }
                ],
                "require": {
                    "php": "*"
                },
                "autoload": {
                    "psr-0": {"JShrink": "src/"}
                },
                "source": {
                    "type": "git",
                    "url": "https://github.com/tedious/JShrink",
                    "reference": "v1.3.1"
                }
            }
        },
        {
            "type": "git",
            "url": "https://github.com/matomo-org/lessphp.git"
        }
    ],
    "scripts": {
        "pre-update-cmd": [
            "Piwik\\Composer\\ScriptHandler::cleanXhprof"
        ],
        "pre-install-cmd": [
            "Piwik\\Composer\\ScriptHandler::cleanXhprof"
        ],
        "post-update-cmd": [
            "Piwik\\Composer\\ScriptHandler::buildXhprof"
        ],
        "post-install-cmd": [
            "Piwik\\Composer\\ScriptHandler::buildXhprof"
        ]
    },
    "autoload": {
        "psr-4": {
            "Piwik\\Plugins\\": "plugins/",
            "Piwik\\": "core/"
        },
        "psr-0": {
            "Zend_": "libs/",
            "HTML_": "libs/",
            "PEAR_": "libs/",
            "Archive_": "libs/"
        },
        "files": ["LegacyAutoloader.php"]
    },
    "autoload-dev": {
        "psr-4": {
            "Piwik\\Tests\\": "tests/PHPUnit/"
        }
    }
}