forked from Lingaro/magento2-module-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.85 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
61
62
{
"name": "orba/magento2-codegen",
"description": "Magento 2 Code Generator",
"version": "3.3.0",
"license": "MIT",
"require": {
"php": "~7.4",
"ext-dom": "*",
"ext-libxml": "*",
"symfony/dependency-injection": "^4.0 || ^5.0",
"symfony/config": "^4.0 || ^5.0",
"symfony/console": "^4.0 || ^5.0",
"symfony/yaml": "^4.0 || ^5.0",
"symfony/filesystem": "^4.0 || ^5.0",
"symfony/finder": "^4.0 || ^5.0",
"symfony/contracts": "^1.0.2",
"symfony/debug": "^2.4 || ~3.0 || ~4.0 || ~5.0",
"symfony/polyfill-ctype": "^1.8",
"twig/twig": "^3.0",
"nikic/php-parser": "^4.3",
"ovidigital/js-object-to-json": "^1.0",
"icanboogie/inflector": "^2.0",
"adbario/php-dot-notation": "^2.2"
},
"autoload": {
"psr-4": {
"Orba\\Magento2Codegen\\": "src/Orba/Magento2Codegen/",
"Instinct\\Component\\Kernel\\": "src/instinct/kernel/"
},
"exclude-from-classmap": [
"src/instinct/kernel/Tests/"
]
},
"scripts": {
"setPermissionsBin": "chmod -R +x bin",
"post-install-cmd": [
"@setPermissionsBin"
],
"post-update-cmd": [
"@setPermissionsBin"
]
},
"bin": ["bin/codegen"],
"require-dev": {
"ext-simplexml": "*",
"phpunit/phpunit": "^9",
"psr/cache": "^1.0",
"psr/log": "^1.0",
"symfony/event-dispatcher": "^4.2 || ^5.0",
"symfony/phpunit-bridge": "^4.2 || ^5.0",
"symfony/var-dumper": "^4.2 || ^5.0",
"squizlabs/php_codesniffer": "^3.6",
"phpmd/phpmd": "^2.10"
},
"provide": {
"psr/log-implementation": "1.0"
},
"conflict": {
"symfony/config": "<3.4",
"symfony/dependency-injection": "<4.2"
}
}