-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
50 lines (50 loc) · 1.46 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
{
"name": "o2ti/full-checkout",
"description": "Full Checkout",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"authors": [
{
"name": "Bruno Elisei",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"o2ti/advanced-fields-checkout": "100.1.*",
"o2ti/advanced-street-address": "100.1.*",
"o2ti/auto-complete-address-br": "100.1.*",
"o2ti/checkout-identification-step": "100.1.*",
"o2ti/field-sort-in-checkout": "100.1.*",
"o2ti/input-masking": "100.1.*",
"o2ti/social-login": "101.1.*",
"o2ti/tax-document-validation-br": "100.1.*",
"o2ti/theme-full-checkout": "100.1.*",
"ext-json": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"O2TI\\FullCheckout\\": ""
}
},
"require-dev": {
"magento/magento-coding-standard": "*"
},
"scripts": {
"post-install-cmd": "vendor/bin/phpcs --config-set installed_paths ../../..,../../phpcompatibility/php-compatibility/PHPCompatibility",
"post-update-cmd": "vendor/bin/phpcs --config-set installed_paths ../../..,../../phpcompatibility/php-compatibility/PHPCompatibility"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"prefer-stable": true,
"minimum-stability": "dev"
}