Skip to content

Commit b02b747

Browse files
committed
Composer update
1 parent 34ef56b commit b02b747

File tree

4 files changed

+4370
-4423
lines changed

4 files changed

+4370
-4423
lines changed

app/code/MercadoPago/Core/composer.json

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,10 @@
22
"name": "mercadopago/module-core",
33
"description": "Mercado Pago payment method module",
44
"require": {
5-
"php": "~5.5.0|~5.6.0|~7.0.0",
6-
"magento/module-config": "100.0.*",
7-
"magento/module-store": "100.0.*",
8-
"magento/module-checkout": "100.0.*",
9-
"magento/module-sales": "100.0.*",
10-
"magento/module-quote": "100.0.*",
11-
"magento/module-customer": "100.0.*",
12-
"magento/module-payment": "100.0.*",
13-
"magento/module-backend": "100.0.*",
14-
"magento/module-catalog": "100.0.*",
15-
"magento/framework": "100.0.*",
16-
"magento/module-ui": "100.0.*",
17-
"lib-libxml": "*"
18-
},
19-
"suggest": {
20-
"magento/module-checkout-agreements": "100.0.*"
5+
"php": "~5.5.0|~5.6.0|~7.0.0"
216
},
227
"type": "magento2-module",
23-
"version": "1.0.5-beta",
8+
"version": "1.0.0",
249
"license": [
2510
"OSL-3.0",
2611
"AFL-3.0"

app/code/MercadoPago/MercadoEnvios/composer.json

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,10 @@
22
"name": "mercadopago/module-mercadoenvios",
33
"description": "Mercado Pago shipping method module",
44
"require": {
5-
"php": "~5.5.0|~5.6.0|~7.0.0",
6-
"magento/module-config": "100.0.*",
7-
"magento/module-store": "100.0.*",
8-
"magento/module-shipping": "100.0.*",
9-
"magento/module-backend": "100.0.*",
10-
"magento/module-directory": "100.0.*",
11-
"magento/module-sales": "100.0.*",
12-
"magento/module-catalog": "100.0.*",
13-
"magento/module-catalog-inventory": "100.0.*",
14-
"magento/module-quote": "100.0.*",
15-
"magento/framework": "100.0.*",
16-
"lib-libxml": "*"
17-
},
18-
"suggest": {
19-
"magento/module-checkout-agreements": "100.0.*"
5+
"php": "~5.5.0|~5.6.0|~7.0.0"
206
},
217
"type": "magento2-module",
22-
"version": "1.0.5-beta",
8+
"version": "1.0.0",
239
"license": [
2410
"OSL-3.0",
2511
"AFL-3.0"

composer.json

Lines changed: 55 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,58 @@
11
{
2-
"name": "mercadopago/magento2-plugin",
3-
"description": "MercadoPago Magento 2 Plugin",
4-
"authors": [
5-
{
6-
"name": "MercadoPago",
7-
"email": "info@mercadopago.com"
8-
}
9-
],
10-
"type": "project",
11-
"version": "1.0.0",
12-
"license": [
13-
"OSL-3.0",
14-
"AFL-3.0"
15-
],
16-
"repositories": [
17-
{
18-
"type": "composer",
19-
"url": "https://repo.magento.com/"
20-
}
21-
],
22-
"require": {
23-
"composer/composer": "@alpha",
24-
"magento/product-community-edition": "2.*"
25-
},
26-
"require-dev": {
27-
"phpunit/phpunit": "4.1.0",
28-
"squizlabs/php_codesniffer": "1.5.3",
29-
"phpmd/phpmd": "@stable",
30-
"pdepend/pdepend": "2.2.2",
31-
"sjparkinson/static-review": "~4.1",
32-
"fabpot/php-cs-fixer": "~1.2",
33-
"lusitanian/oauth": "~0.3 <=0.7.0"
34-
},
35-
"config": {
36-
"use-include-path": true
37-
},
38-
"autoload": {
39-
"psr-0": {
40-
"": "app/code/"
41-
},
42-
"files": [
43-
"app/etc/NonComposerComponentRegistration.php"
44-
]
45-
},
46-
"autoload-dev": {
47-
"psr-4": {
48-
"Magento\\Sniffs\\": "dev/tests/static/framework/Magento/Sniffs/",
49-
"Magento\\Tools\\": "dev/tools/Magento/Tools/",
50-
"Magento\\Tools\\Sanity\\": "dev/build/publication/sanity/Magento/Tools/Sanity/",
51-
"Magento\\TestFramework\\Inspection\\": "dev/tests/static/framework/Magento/TestFramework/Inspection/",
52-
"Magento\\TestFramework\\Utility\\": "dev/tests/static/framework/Magento/TestFramework/Utility/",
53-
"Magento\\Framework\\": "lib/internal/Magento/Framework/",
54-
"Magento\\Setup\\": "setup/src/Magento/Setup/",
55-
"Magento\\": "app/code/Magento/"
56-
}
57-
},
58-
"minimum-stability": "alpha",
59-
"prefer-stable": true,
60-
"extra": {
61-
"magento-force": "override"
2+
"name": "mercadopago/magento2-plugin",
3+
"description": "Mercado Pago Magento 2 Plugin",
4+
"authors": [
5+
{
6+
"name": "Mercado Pago",
7+
"email": "info@mercadopago.com"
628
}
9+
],
10+
"type": "magento2-module",
11+
"version": "1.0.0",
12+
"license": [
13+
"OSL-3.0",
14+
"AFL-3.0"
15+
],
16+
"repositories": [
17+
{
18+
"type": "composer",
19+
"url": "https://repo.magento.com/"
20+
}
21+
],
22+
"require": {
23+
"composer/composer": "@alpha"
24+
},
25+
"require-dev": {
26+
"magento/product-community-edition": "2.*",
27+
"phpunit/phpunit": "4.1.0",
28+
"squizlabs/php_codesniffer": "1.5.3",
29+
"phpmd/phpmd": "@stable",
30+
"pdepend/pdepend": "2.2.2",
31+
"sjparkinson/static-review": "~4.1",
32+
"fabpot/php-cs-fixer": "~1.2",
33+
"lusitanian/oauth": "~0.3 <=0.7.0"
34+
},
35+
"config": {
36+
"use-include-path": true
37+
},
38+
"psr-4": {
39+
"MercadoPago\\": "app/code/MercadoPago/"
40+
},
41+
"autoload-dev": {
42+
"psr-4": {
43+
"Magento\\Sniffs\\": "dev/tests/static/framework/Magento/Sniffs/",
44+
"Magento\\Tools\\": "dev/tools/Magento/Tools/",
45+
"Magento\\Tools\\Sanity\\": "dev/build/publication/sanity/Magento/Tools/Sanity/",
46+
"Magento\\TestFramework\\Inspection\\": "dev/tests/static/framework/Magento/TestFramework/Inspection/",
47+
"Magento\\TestFramework\\Utility\\": "dev/tests/static/framework/Magento/TestFramework/Utility/",
48+
"Magento\\Framework\\": "lib/internal/Magento/Framework/",
49+
"Magento\\Setup\\": "setup/src/Magento/Setup/",
50+
"Magento\\": "app/code/Magento/"
51+
}
52+
},
53+
"minimum-stability": "beta",
54+
"prefer-stable": true,
55+
"extra": {
56+
"map" : [["app/code/MercadoPago", "MercadoPago"]]
57+
}
6358
}

0 commit comments

Comments
 (0)