-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
executable file
·65 lines (65 loc) · 1.68 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
64
65
{
"name": "oxcom/magento2-currency-services",
"description": "This is a module that allows to update currency rates from addition external sources.",
"type": "magento2-module",
"license": "LGPL-3.0",
"keywords": [
"magento2",
"currency",
"services",
"rates"
],
"homepage": "https://github.com/OxCom/magento2-currency-services",
"require": {
"php": ">=7.1",
"ext-bcmath": "*",
"ext-simplexml": "*",
"ext-curl": "*",
"ext-json": "*",
"magento/module-config": "100.0.*|100.1.*|101.0.*|101.1.*|101.2.*",
"magento/module-store": "100.0.*|100.1.*|100.2.*|101.0.*|101.1.*",
"magento/module-backend": "100.0.*|100.1.*|100.2.*|101.0.*|102.0.*|103.0.*",
"magento/module-directory": "100.0.*|100.1.*|100.2.*|100.3.*|100.4.*",
"magento/framework": "100.0.*|100.1.*|101.0.*|102.0.*|103.0.*",
"psr/log": "^1.1|^2.0|^3.0"
},
"require-dev": {
"magento/zendframework1": "1.12.*|1.13.*|1.14.*",
"phpunit/phpunit": "5.3.5|6.4.4|^9.5.0",
"squizlabs/php_codesniffer": "^3.1",
"sebastian/phpcpd": "^3.0.1|^5.0.2|^6.0.3"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"OxCom\\MagentoCurrencyServices\\": ""
}
},
"autoload-dev": {
"classmap": [
"Test/Model"
]
},
"authors": [
{
"name": "OxCom",
"email": "lancer.oxcom@gmail.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"laminas/laminas-dependency-plugin": true,
"magento/*": true,
"php-http/discovery": true
}
}
}