-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.02 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
{
"name": "mygento/module-js-bundler",
"type": "magento2-module",
"license": "OSL-3.0",
"homepage": "https://github.com/mygento/module-js-bundler",
"description": "Magento 2 Advanced JS Bundler",
"authors": [
{
"name": "Nikita Tarasov",
"email": "[email protected]",
"homepage": "http://www.mygento.net/",
"role": "Developer"
},
{
"name": "Mygento",
"email": "[email protected]",
"homepage": "https://www.mygento.ru/"
}
],
"keywords": [
"magento",
"mygento"
],
"require": {
"magento/module-deploy": "100.4.*"
},
"require-dev": {
"mygento/coding-standard": "~2.14.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Mygento\\JsBundler\\": ""
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com"
}
],
"config": {
"allow-plugins": {
"phpro/grumphp": true,
"magento/composer-dependency-version-audit-plugin": true
}
}
}