-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.5 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
{
"name": "o2ti/auto-complete-address-br",
"description": "Autocomplete Address for Brazil",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"authors": [
{
"name": "Bruno Elisei",
"email": "brunoelisei@o2ti.com"
}
],
"require": {
"php": ">=7.3",
"magento/framework": "103.0.*",
"magento/module-customer": ">=103.0.0",
"magento/module-config": "101.2.*",
"magento/module-eav": "102.1.*",
"magento/module-sales": "103.0.*",
"magento/module-directory": "100.4.*",
"magento/module-checkout": "100.4.*",
"magento/module-backend": "102.0.*",
"magento/module-theme": "101.1.*",
"magento/module-ui": "101.2.*",
"ext-json": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"O2TI\\AutoCompleteAddressBr\\": ""
}
},
"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"
}