generated from integer-net/magento2-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.53 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
{
"name": "integer-net/magento2-prometheus-security-metrics",
"description": "Additional metrics for run-as-root/prometheus-exporter",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Fabian Schmengler",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"IntegerNet\\PrometheusSecurityMetrics\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"IntegerNet\\PrometheusSecurityMetrics\\": "tests/src"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": "~7.3||~7.4",
"magento/framework": "^103.0.0",
"run-as-root/magento2-prometheus-exporter": "dev-master"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^6.0|^9.0",
"pds/skeleton": "^1.0",
"phpro/grumphp": "^v0.21.0",
"phpstan/phpstan": "^0.12.0",
"squizlabs/php_codesniffer": "^3.5",
"magento/magento-coding-standard": "@dev"
},
"scripts": {
"post-install-cmd": [
"vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/"
],
"post-update-cmd": [
"vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/"
]
}
}