forked from darksith666/magento2-ee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.7 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
{
"name": "wirecard/magento2-ee",
"description": "Magento2 plugin for Wirecard Payment Processing Gateway",
"license": "GPL-3.0-only",
"minimum-stability": "beta",
"prefer-stable": true,
"require": {
"php": ">=7.0",
"magento/module-payment": ">=100.1.0",
"magento/module-checkout": ">=100.1.0",
"magento/module-sales": ">=100.0.0",
"magento/module-vault": ">=100.0.0",
"guzzlehttp/psr7": "1.4.2 || 1.5.2",
"php-http/guzzle6-adapter": ">=1.1.1",
"nyholm/psr7": "^0.2.3",
"php-http/discovery": "1.4.0",
"wirecard/payment-sdk-php": "3.6.3",
"wirecard/magento2-ee-compat": "^1.0.0 || ^2.0.0"
},
"require-dev": {
"phpunit/phpunit": "5.3.5",
"magento/community-edition": ">=2.1.0",
"friendsofphp/php-cs-fixer": "^2.2",
"codacy/coverage": "1.4.2",
"symfony/yaml": "^3"
},
"type": "magento2-module",
"scripts": {
"make-readme-badge": "@php .bin/version-helper.php -r",
"make-wiki-notes": "@php .bin/version-helper.php -w",
"make-release-notes": "@php .bin/version-helper.php",
"upload-coverage": "codacycoverage clover build/coverage/xml",
"cs-check": "php-cs-fixer fix -v --dry-run --using-cache=no .",
"cs-fix": "php-cs-fixer fix .",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-clover build/coverage/xml",
"test-reports": "phpunit --coverage-html reports/coverage --coverage-clover reports/clover.xml --coverage-crap4j reports/crap4j.xml --log-junit reports/junit.xml"
},
"autoload": {
"psr-4": {
"Wirecard\\ElasticEngine\\": ""
},
"files": [
"registration.php"
]
},
"autoload-dev": {
"psr-4": {
"WirecardTest\\ElasticEngine\\": "Test"
}
}
}