-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.96 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.96 KB
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
{
"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",
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/,../../magento/php-compatibility-fork)"
],
"post-update-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/,../../magento/php-compatibility-fork)"
]
},
"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 || ^3"
},
"require-dev": {
"magento/magento-coding-standard": ">=6",
"magento/php-compatibility-fork": "^0.1.0",
"phpunit/phpunit": "^9.0 || ^10.0 || ^11.0 || ^12.0",
"squizlabs/php_codesniffer": "^3.0.0"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": false,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}