forked from Eng-omar-essa/paymentSDK-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.56 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
{
"name": "wirecard/payment-sdk-php",
"description": "PHP SDK for the payment processing ReST API of Wirecard",
"minimum-stability": "stable",
"license": "MIT",
"require": {
"ext-mbstring": "*",
"ext-intl": "*",
"ext-simplexml": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-libxml": "*",
"ext-dom": "*",
"ext-hash": "*",
"php": "5.6.* || 7.0.* || 7.1.* || 7.2.* || 7.3.*",
"monolog/monolog": "^1.16",
"php-http/client-common": "^2.0",
"php-http/discovery": "^1.0 <= 1.6.1",
"php-http/message": "~1.6.0 || ~1.7.0",
"robrichards/xmlseclibs": "~3.0.0",
"wirecard/iso-paypal-converter": "^1.0.0",
"whichbrowser/parser": "~2.0.0",
"psr/log": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.3",
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "^1.1",
"codacy/coverage": "1.4.3",
"php-http/guzzle6-adapter": "1.1.1",
"guzzlehttp/psr7": "1.6.1"
},
"scripts": {
"upload-coverage": "codacycoverage clover build/coverage/xml",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-clover build/coverage/xml",
"infection": "infection --threads=4 --min-msi=75 --min-covered-msi=75 --only-covered --log-verbosity=2"
},
"autoload": {
"psr-4": {
"Wirecard\\PaymentSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WirecardTest\\PaymentSdk\\": "test/",
"Wirecard\\PaymentSdk\\Example\\Constants\\": "examples/inc/constants/"
}
}
}