forked from staempfli/magento2-code-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 930 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
43
{
"name": "staempfli/magento2-code-generator",
"description": "Staempfli AG - Magento 2 Code Generator Tool",
"type": "staempfli-mage-tool",
"license": [
"GPL-3.0"
],
"authors": [
{
"name": "Juan Alonso",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/staempfli/universal-code-generator.git"
}
],
"require": {
"staempfli/universal-code-generator": "^1.2",
"padraic/phar-updater": "~1.0.0"
},
"require-dev": {
"kherge/box": "~2.5"
},
"autoload": {
"psr-4": { "Staempfli\\Mg2CodeGenerator\\": "src/Staempfli/Mg2CodeGenerator/" }
},
"config": {
"bin-dir": "bin"
},
"bin": ["bin/mg2-codegen"],
"scripts": {
"setPermissionsBin": "chmod -R +x bin",
"post-install-cmd": [
"@setPermissionsBin"
],
"post-update-cmd": [
"@setPermissionsBin"
]
}
}