forked from danslo/CleanCheckout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.17 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
{
"name": "rubic/magento2-module-clean-checkout",
"description": "A drop-in replacement for the Magento 2 checkout.",
"type": "magento2-module",
"license": "MIT",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Rubic\\CleanCheckout\\": "src/"
}
},
"config": {
"platform": {
"php": "7.0.26"
}
},
"require": {
"geoip2/geoip2": "^2.0",
"hybridauth/hybridauth" : "^3.0",
"magento/module-checkout": ">=100.1.0",
"magento/module-config": ">=100.1.0",
"magento/module-customer": ">=100.1.0",
"magento/module-directory": ">=100.1.0",
"magento/module-eav": ">=100.1.0",
"magento/module-newsletter": ">=100.1.0",
"magento/module-store": ">=100.1.0",
"magento/module-tax": ">=100.1.0",
"magento/module-theme": ">=100.1.0"
},
"require-dev": {
"phpstan/phpstan": "^0.9.1",
"magento/marketplace-eqp": "^1.0.5"
},
"repositories": [
{ "type": "composer", "url": "https://repo.magento.com/" }
],
"minimum-stability": "beta",
"prefer-stable": true
}