forked from graycoreio/magento2-stdlogging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.68 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
{
"name": "graycore/magento2-stdlogging",
"description": "A Magento 2 module that changes all logging handlers to stdout",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Damien Retzinger",
"email": "damienwebdev@gmail.com"
}
],
"scripts": {
"test": "phpunit --bootstrap vendor/autoload.php test",
"unit-test": "vendor/bin/phpunit ./Test/Unit",
"lint": "phpcs . --standard=Magento2 --ignore='vendor/*'",
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
],
"post-update-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
]
},
"archive": {
"exclude": [
"/docs",
"/Test",
"README.md"
]
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Graycore\\StdLogging\\": ""
},
"files": [
"registration.php"
]
},
"require": {
"magento/framework": "^102.0 || ^103.0",
"magento/module-developer": "^100.3.3",
"monolog/monolog": "^1 || ^2"
},
"require-dev": {
"magento/magento-coding-standard": ">=6",
"phpunit/phpunit": "^8 || ^9",
"squizlabs/php_codesniffer": "^3.0.0"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}