-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
42 lines (42 loc) · 919 Bytes
/
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
{
"name": "mygento/module-configsync",
"description": "A module to store Magento configuration with multiple environments in the version control",
"type": "magento2-module",
"license": "OSL-3.0",
"authors": [{
"name": "Nikita Tarasov",
"email": "[email protected]"
}],
"keywords": [
"magento",
"mygento"
],
"require": {
"magento/module-deploy": "100.4.*",
"mustangostang/spyc": "^0.6.2"
},
"require-dev": {
"mygento/coding-standard": "~2.14.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Mygento\\Configsync\\": ""
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com"
}
],
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": false,
"magento/magento-composer-installer": false,
"phpro/grumphp": true
}
}
}