-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 2.45 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 2.45 KB
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
{
"name": "paypal/module-subscription",
"description": "Enable products to be purchased as a subscription.",
"type": "magento2-module",
"license": "proprietary",
"version": "3.5.0",
"authors": [
{
"email": "hello@gene.co.uk",
"name": "Gene Commerce Ltd"
}
],
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
},
{
"type": "composer",
"url": "https://repo.packagist.com/gene/"
}
],
"require": {
"paypal/module-braintree-core": "*",
"magento/framework": "103.0.*",
"magento/module-customer": "101.0.*||102.0.*||^103.0.0",
"magento/module-config": "101.0.*||101.1.*||^101.2.0",
"magento/module-sales": "101.0.*||102.0.*||^102.1.0||^103",
"magento/module-directory": "100.2.*||100.3.*||^100.4.0",
"magento/module-payment": "100.2.*||100.3.*||^100.4.0",
"magento/module-checkout": "100.2.*||100.3.*||^100.4.0",
"magento/module-backend": "100.2.*||101.0.*||^102.0.0",
"magento/module-vault": "101.0.*||101.1.*||^101.2.0",
"magento/module-user": "101.2.*",
"magento/module-reports": "100.4.*",
"magento/module-catalog": "102.0.*||103.0.*||^104.0.0",
"magento/module-configurable-product": "100.2.*||100.3.*||^100.4.0",
"magento/module-quote": "101.0.*||101.1.*||^101.2.0",
"magento/module-paypal": "100.2.*||100.3.*||^101.0.0",
"magento/module-theme": "100.2.*||101.0.*||^101.1.0",
"magento/module-ui": "101.0.*||101.1.*||^101.2.0",
"magento/module-store": "101.1.*",
"magento/module-catalog-inventory": "100.4.*",
"magento/module-wishlist": "101.2.*",
"magento/module-gift-message": "100.4.*",
"magento/module-tax": "100.4.*",
"magento/module-eav": "102.1.*",
"magento/module-instant-purchase": "100.4.*",
"magento/module-multishipping": "100.4.*"
},
"require-dev": {
"magento/magento-coding-standard": "^6.0",
"phpstan/phpstan": "^0.12.92",
"bitexpert/phpstan-magento": "^0.8.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"PayPal\\Subscription\\": ""
},
"files": [
"registration.php"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}