-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·48 lines (48 loc) · 1.21 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
{
"name": "opengento/logger",
"description": "This extension sets new logger handlers for Magento2, such as Gelf or Slack and many others.",
"keywords": [
"php",
"magento",
"magento2",
"gelf",
"ELK",
"Graylog",
"Elasticsearch"
],
"require": {
"php": "^7.1||^8.0",
"magento/framework": ">=100.1.0",
"graylog2/gelf-php": "^1.6.0 || ^2.0.0"
},
"require-dev": {
"magento/magento-coding-standard": "^5",
"magento/marketplace-eqp": "^4.0",
"roave/security-advisories": "dev-master"
},
"type": "magento2-module",
"license": [
"MIT"
],
"homepage": "https://github.com/opengento/logger",
"authors": [
{
"name": "Opengento Team",
"email": "[email protected]",
"homepage": "https://opengento.fr/",
"role": "lead"
}
],
"support": {
"source": "https://github.com/opengento/logger",
"issues": "https://github.com/opengento/logger/issues"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Opengento\\Logger\\": ""
}
}
}