forked from genecommerce/module-braintree-magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·63 lines (63 loc) · 2.04 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
{
"name": "gene/module-braintree",
"description": "Fork from the Magento Braintree 2.2.0 module by Gene Commerce for PayPal.",
"version": "4.0.8",
"type": "magento2-module",
"license": "proprietary",
"require": {
"magento/module-customer": "101.0.*||102.0.*",
"magento/module-config": "101.0.*||101.1.*",
"magento/module-sales": "101.0.*||102.0.*",
"magento/module-directory": "100.2.*||100.3.*",
"magento/module-payment": "100.2.*||100.3.*",
"magento/module-checkout": "100.2.*||100.3.*",
"magento/module-backend": "100.2.*||101.0.*",
"magento/module-vault": "101.0.*||101.1.*",
"magento/module-catalog": "102.0.*||103.0.*",
"magento/module-quote": "101.0.*||101.1.*",
"magento/module-paypal": "100.2.*||100.3.*",
"magento/module-theme": "100.2.*||101.0.*",
"magento/module-ui": "101.0.*||101.1.*",
"magento/module-multishipping": "100.2.*||100.3.*",
"ext-json": "*",
"ext-simplexml": "*",
"php": ">=7.2.0",
"league/iso3166": "^2.1",
"msp/recaptcha": "^2.2.3"
},
"replace": {
"magento/module-braintree": "100.*.*",
"braintree/braintree_php": "3.*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-0": {
"Braintree": "braintree_php/lib/"
},
"psr-4": {
"Magento\\Braintree\\": "",
"Braintree\\": "braintree_php/lib/Braintree"
}
},
"authors": [
{
"name": "Magento Commerce",
"homepage": "http://www.magento.com",
"role": "Original Developers"
},
{
"name": "Aidan Threadgold",
"email": "[email protected]",
"homepage": "https://www.gene.co.uk",
"role": "Developer"
},
{
"name": "Paul Canning",
"email": "[email protected]",
"homepage": "https://www.gene.co.uk",
"role": "Developer"
}
]
}