forked from dongilbert/jstats-server
-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
67 lines (67 loc) · 1.9 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
64
65
66
67
{
"name": "joomla/statistics-server",
"type": "project",
"description": "Joomla Stats Collection Server",
"keywords": ["joomla"],
"homepage": "http://github.com/joomla/statistics-server",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.1.0",
"ext-json": "*",
"ext-pdo": "*",
"joomla/application": "^3.0",
"joomla/console": "^3.0",
"joomla/controller": "^3.0",
"joomla/database": "^3.0",
"joomla/event": "^3.0",
"joomla/di": "^3.0",
"joomla/filter": "^3.0",
"joomla/github": "^3.0-dev",
"joomla/http": "^3.0",
"joomla/input": "^3.0",
"joomla/registry": "^3.0",
"joomla/router": "^3.0",
"joomla/string": "^3.0",
"joomla/uri": "^3.0",
"joomla/utilities": "^3.0",
"joomla/view": "^3.0",
"league/flysystem": "^1.0.69",
"monolog/monolog": "^2.1",
"psr/log": "^1.1.3",
"ramsey/uuid": "^3.9.2",
"symfony/process": "^5.1",
"theiconic/php-ga-measurement-protocol": "^2.7.2",
"influxdata/influxdb-client-php": "^3.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.58.1",
"joomla/coding-standards": "~3.0@dev",
"joomla/test": "^2.0@beta",
"league/flysystem-memory": "^1.0.2",
"phpunit/phpunit": "^10.5.20"
},
"autoload": {
"psr-4": {
"Joomla\\StatsServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\StatsServer\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "*",
"symfony/polyfill-php55": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php72": "*"
},
"config": {
"platform": {
"php": "8.1.0"
},
"allow-plugins": {
"php-http/discovery": true
}
}
}