-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
65 lines (65 loc) · 1.81 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
{
"name": "run_as_root/magento2-prometheus-exporter",
"description": "Magento2 Prometheus Exporter",
"version": "3.2.2",
"type": "magento2-module",
"license": "MIT",
"homepage": "https://github.com/run-as-root/magento2-prometheus-exporter",
"readme": "./README.md",
"support": {
"email": "[email protected]",
"source": "https://github.com/run-as-root/magento2-prometheus-exporter"
},
"keywords": [
"magento",
"magento2",
"magento2-module"
],
"authors": [
{
"name": "David Lambauer",
"email": "[email protected]"
},
{
"name": "Matthias Walter",
"email": "[email protected]"
}
],
"require": {
"magento/framework": "*",
"magento/module-payment": "*",
"magento/module-eav": "*",
"magento/module-cron": "*",
"magento/module-cms": "*",
"magento/module-shipping": "*",
"magento/module-catalog": "*",
"magento/module-sales": "*",
"laminas/laminas-http": "*",
"magento/module-config": "*",
"magento/module-backend": "*",
"guzzlehttp/guzzle": "*",
"symfony/console": "*",
"psr/log": "*",
"monolog/monolog": "*",
"magento/module-store": "*",
"magento/module-indexer": "*",
"magento/zend-db": "*"
},
"conflict": {
"symfony/process": "<5.4.46"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"RunAsRoot\\PrometheusExporter\\": "src/",
"RunAsRoot\\NewRelicApi\\": "lib/",
"RunAsRoot\\PrometheusExporter\\Test\\": "Test/"
}
},
"minimum-stability": "dev"
}