-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.29 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
{
"name": "run_as_root/magento2-prometheus-exporter",
"description": "Magento2 Prometheus Exporter",
"version": "3.0.1",
"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": {
"symfony/console": "*",
"psr/log": "*",
"monolog/monolog": "*",
"magento/module-store": "*",
"magento/module-indexer": "*",
"magento/zendframework1": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"RunAsRoot\\PrometheusExporter\\": "src/",
"RunAsRoot\\NewRelicApi\\": "lib/",
"RunAsRoot\\PrometheusExporter\\Test\\": "Test/"
}
}
}