-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (41 loc) · 1.24 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
{
"name": "morozov-group/magento1-similar-products",
"type":"magento-module",
"description": "Magento 1.x Similar Products Extension",
"license": "MIT",
"authors": [
{
"name": "Morozov Group",
"email": "tech@morozov.group"
}
],
"require": {
"magento-hackathon/magento-composer-installer": "*"
},
"require-dev": {
"magento/marketplace-eqp": "dev-master"
},
"scripts": {
"post-install-cmd": [
"vendor/bin/phpcs --config-set default_standard MEQP1",
"vendor/bin/phpcs --config-set installed_paths \"$(pwd)/vendor/magento/marketplace-eqp\"",
"vendor/bin/phpcs --config-set php5.5_path \"$(which php)\""
],
"configure-phpcs": [
"vendor/bin/phpcs --config-set default_standard MEQP1",
"vendor/bin/phpcs --config-set installed_paths \"$(pwd)/vendor/magento/marketplace-eqp\"",
"vendor/bin/phpcs --config-set php5.5_path \"$(which php)\""
]
},
"extra": {
"exclude": [
"phpcs.xml"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/magento/marketplace-eqp.git"
}
]
}