-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
41 lines (41 loc) · 1.43 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
{
"name": "miha1/shopware-ee",
"description": "Shopware plugin for Wirecard Payment Processing Gateway",
"license": "GPL-3.0-only",
"minimum-stability": "beta",
"prefer-stable": true,
"require": {
"php": ">=5.6",
"symfony/options-resolver": "^3",
"wirecard/payment-sdk-php": "3.6.1",
"php-http/guzzle5-adapter": ">=1.0.1",
"guzzlehttp/psr7": ">=1.4.2"
},
"require-dev": {
"phpunit/phpunit": "5.7.27",
"squizlabs/php_codesniffer": "^3.3",
"codacy/coverage": "1.4.2",
"symfony/yaml": "^3"
},
"type": "shopware-plugin",
"autoload": {
"psr-4": {
"WirecardElasticEngine\\": "/"
}
},
"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": "phpcs --standard=phpcs.xml --ignore=*/vendor/*,*/Tests/*,*/node_modules/*,*/Resources/*,*/.bin/* -s ",
"cs-fix": "phpcbf --standard=phpcs.xml",
"js-check": "eslint -c .eslintrc.json **/*.js **/*.js --ignore-path .eslintignore",
"js-fix": "eslint -c .eslintrc.json **/*.js **/*.js --ignore-path .eslintignore --fix",
"test-coverage": "phpunit --colors=always --coverage-clover build/coverage.xml",
"build-languages": "php .bin/language-helper.php"
},
"extra": {
"installer-name": "WirecardElasticEngine"
}
}