forked from cesarams/prestashop-ee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.91 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/prestashop-ee",
"description": "Wirecard Payment Processing Gateway plugin for Prestashop",
"license": "GPL-3.0-only",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=5.6",
"symfony/options-resolver": "^3",
"wirecard/payment-sdk-php": "4.0.0",
"php-http/guzzle5-adapter": ">=1.0.1",
"guzzlehttp/psr7": ">=1.4.2",
"wirecard/base-url-matcher": "1.0.0",
"wirecard/io-converter": "^1.0",
"monolog/monolog": "^1.0",
"ext-json": "*",
"symfony/http-foundation": "^3"
},
"require-dev": {
"phpunit/phpunit": "5.7.27",
"squizlabs/php_codesniffer": "^3.3",
"symfony/yaml": "^3",
"codacy/coverage": "^1.4"
},
"type": "prestashop-plugin",
"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",
"cs-fix": "phpcbf",
"test": "phpunit --exclude-group ignore --colors=always",
"test-coverage": "phpunit --exclude-group ignore --coverage-clover build/coverage/xml"
},
"autoload": {
"psr-4": {
"WirecardEE\\Prestashop\\": "wirecardpaymentgateway/",
"WirecardEE\\Prestashop\\Classes\\": "wirecardpaymentgateway/classes/",
"WirecardEE\\Prestashop\\Models\\": "wirecardpaymentgateway/models/",
"WirecardEE\\Prestashop\\Helper\\": "wirecardpaymentgateway/helper/",
"WirecardEE\\Prestashop\\Classes\\Config\\": "wirecardpaymentgateway/classes/config/",
"WirecardEE\\Prestashop\\Helper\\Service\\": "wirecardpaymentgateway/helper/service",
"WirecardEE\\Prestashop\\Controllers\\": "wirecardpaymentgateway/controllers/"
}
},
"config": {
"vendor-dir": "wirecardpaymentgateway/vendor",
"preferred-install": "dist",
"prepend-autoloader": false
}
}