-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.74 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.74 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
{
"name": "juno/magento2",
"description": "Juno integration extension for Magento 2",
"version": "1.0.1",
"type": "magento2-module",
"license": ["GPL-3.0-or-later"],
"authors": [
{
"name": "Juno",
"email": "implantacao@juno.com.br"
}
],
"require": {
"php": ">=7.1.3",
"composer/composer": "1.10.22",
"magento/framework": "102.0.*",
"magento/module-config": "101.1.*",
"magento/module-directory": "100.3.*",
"magento/module-payment": "100.3.*",
"magento/module-checkout": "100.3.*",
"magento/module-sales": "102.0.*",
"magento/module-backend": "101.0.*",
"magento/module-customer": "102.0.*",
"magento/module-quote": "101.1.*",
"magento/module-ui": "101.1.*",
"psr/log": "^1.0"
},
"minimum-stability": "stable",
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require-dev": {
"phpunit/phpunit": "~6.5.0",
"magento/magento-coding-standard": "~4.0.0"
},
"scripts": {
"test-phpcs": "vendor/bin/phpcs --standard=Magento2 ./Block/ ./Controller/ etc/ ./Gateway/ ./Helper/ ./Logger/ ./Model/ ./Observer/ ./Plugin/ view/",
"test-phpcbf": "vendor/bin/phpcbf --standard=Magento2 ./Block/ ./Controller/ etc/ ./Gateway/ ./Helper/ ./Logger/ ./Model/ ./Observer/ ./Plugin/ view/",
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 1 ] && vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 1 ] && vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/"
]
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"DigitalHub\\Juno\\": ""
}
}
}