forked from phpro/phpro-mage2-module-api-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.5 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
60
{
"name": "phpro/mage2-module-api-logger",
"description": "Extension on API logging",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "PHPro NV",
"email": "[email protected]",
"homepage": "https://www.phpro.be/"
}
],
"require": {
"php": "^7.1",
"magento/framework": "^100.1|^101.0|^102.0|^103.0",
"phpro/mage2-module-logger-handler": "^3.0.0"
},
"require-dev": {
"phpro/grumphp-shim": "~1.5.0",
"magento/magento-coding-standard": "5"
},
"autoload": {
"psr-4": {
"Phpro\\APILogger\\": ""
},
"files": [
"registration.php"
]
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
},
{
"type": "git",
"url": "https://github.com/magento/marketplace-eqp"
}
],
"config": {
"platform": {
"ext-gd": "7.1",
"ext-mcrypt": "7.1",
"ext-itl": "7.1",
"ext-xsl": "7.1",
"ext-bcmath": "7.1",
"ext-pdo_mysql": "7.1",
"ext-soap": "7.1",
"ext-zip": "7.1"
}
},
"scripts": {
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard,../../phpcompatibility/php-compatibility/PHPCompatibility)"
],
"post-update-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard,../../phpcompatibility/php-compatibility/PHPCompatibility)"
]
}
}