forked from magento/magento-cloud
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
114 lines (114 loc) · 4.03 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "magento/magento-cloud-template",
"description": "eCommerce Platform for Growth (Enterprise Edition)",
"type": "project",
"version": "2.4.5",
"license": "OSL-3.0",
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"laminas/laminas-dependency-plugin": true,
"magento/*": true
}
},
"repositories": [
{"type": "git", "url": "[email protected]:PMET-public/ece-tools.git"},
{"type": "git", "url": "[email protected]:PMET-public/magento-cloud-docker.git"},
{"type": "composer", "url": "https://repo.magento.com/"}
],
"require": {
"magento/composer-root-update-plugin": "^2.0.2",
"magento/magento-cloud-docker": "1.3.2.x-dev",
"magento/magento-cloud-metapackage": ">=2.4.5 <2.4.6",
"magentoese/ece-tools": "2002.1.10.x-dev"
},
"suggest": {
"ext-pcntl": "Need for run processes in parallel mode"
},
"conflict": {
"gene/bluefoot": "*"
},
"autoload": {
"psr-4": {
"Magento\\Setup\\": "setup/src/Magento/Setup/",
"Magento\\": "app/code/Magento/",
"Zend\\Mvc\\Controller\\": "setup/src/Zend/Mvc/Controller/"
},
"psr-0": {
"": [
"app/code/",
"generated/code/"
]
},
"files": [
"app/etc/NonComposerComponentRegistration.php"
],
"exclude-from-classmap": [
"**/dev/**",
"**/update/**",
"**/Test/**"
]
},
"autoload-dev": {
"psr-4": {
"Magento\\Sniffs\\": "dev/tests/static/framework/Magento/Sniffs/",
"Magento\\Tools\\": "dev/tools/Magento/Tools/",
"Magento\\Tools\\Sanity\\": "dev/build/publication/sanity/Magento/Tools/Sanity/",
"Magento\\TestFramework\\Inspection\\": "dev/tests/static/framework/Magento/TestFramework/Inspection/",
"Magento\\TestFramework\\Utility\\": "dev/tests/static/framework/Magento/TestFramework/Utility/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"component_paths": {
"trentrichardson/jquery-timepicker-addon": "lib/web/jquery/jquery-ui-timepicker-addon.js",
"components/jquery": [
"lib/web/jquery.js",
"lib/web/jquery/jquery.min.js",
"lib/web/jquery/jquery-migrate.js"
],
"blueimp/jquery-file-upload": "lib/web/jquery/fileUploader",
"components/jqueryui": [
"lib/web/jquery/jquery-ui.js"
],
"twbs/bootstrap": [
"lib/web/jquery/jquery.tabs.js"
],
"tinymce/tinymce": "lib/web/tiny_mce_5"
},
"magento-force": true,
"magento-deploystrategy": "copy",
"magento-deploy-ignore": {
"*": [
"/.gitignore"
]
}
},
"scripts": {
"generate-schema": [
"php ./vendor/bin/ece-tools schema:generate || true"
],
"pre-autoload-dump" : [
],
"post-autoload-dump" : [
"# install magerun via curl; composer no longer recommended",
"curl -sS -o vendor/bin/mr https://files.magerun.net/n98-magerun2-latest.phar && chmod +x vendor/bin/mr"
],
"post-install-cmd" : [
"# enable error reporting",
"mv pub/errors/local.xml.sample pub/errors/local.xml || :",
"@generate-schema",
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
],
"post-update-cmd": [
"@generate-schema",
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
]
},
"require-dev": {
"magento/magento-coding-standard": "^25.0"
}
}