-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
55 lines (55 loc) · 1.4 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
{
"name": "dr/payment-method-filter",
"description": "This module excludes payment methods from checkout by using filters.",
"authors": [
{
"name": "Daniel Rose",
"email": "[email protected]"
}
],
"type": "magento2-module",
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"magento/module-payment": "100.3.*|100.2.*"
},
"require-dev": {
"phpunit/phpunit": "^6.2.4",
"squizlabs/php_codesniffer": "^3.0.1",
"phpmd/phpmd": "@stable",
"pdepend/pdepend": "^2.5.0",
"sebastian/phpcpd": "^2.0.0",
"zendframework/zend-http": "~2.7.0",
"phing/phing": "@stable",
"satooshi/php-coveralls": "@stable",
"magento/module-offline-payments": "100.2.*"
},
"license": "MIT",
"keywords": [
"Magento 2",
"Payment method filter"
],
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"DR\\PaymentMethodFilter\\": "src"
}
},
"autoload-dev": {
"files": [
"var/generation/Magento/Quote/Api/Data/CartExtensionInterface.php",
"var/generation/Magento/Quote/Api/Data/CartItemExtensionInterface.php",
"var/generation/Magento/Catalog/Api/Data/ProductExtensionInterface.php",
"var/generation/Magento/Customer/Api/Data/CustomerExtensionInterface.php"
],
"psr-4": {
"DR\\PaymentMethodFilter\\Test\\": "tests"
}
}
}