-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
62 lines (62 loc) · 1.61 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
56
57
58
59
60
61
62
{
"name": "pay-now/paynow-php-sdk",
"description": "PHP client library for accessing Paynow API",
"version": "2.4.3",
"keywords": [
"paynow",
"mbank",
"payment processing",
"api"
],
"type": "library",
"homepage": "https://www.paynow.pl",
"license": "MIT",
"authors": [
{
"name": "mBank S.A.",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"psr/http-message": "^1.0 || ^2.0",
"php-http/client-implementation": "^1.0 || ^2.0",
"php-http/message-factory": "^1.0 || ^2.0",
"php-http/discovery": "^1.12",
"php-http/httplug": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5.36",
"php-http/mock-client": "^1.3",
"squizlabs/php_codesniffer": "^3.4",
"friendsofphp/php-cs-fixer": "^2.15",
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"nyholm/psr7": "^1.2",
"guzzlehttp/psr7": "^1.6",
"php-http/guzzle6-adapter": "^2.0"
},
"suggest": {
"nyholm/psr7": "A super lightweight PSR-7 implementation",
"php-http/curl-client": "PSR-18 and HTTPlug Async client with cURL"
},
"autoload": {
"psr-4": {
"Paynow\\": "src/Paynow/",
"Paynow\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"cs-check": "php-cs-fixer fix --no-interaction --dry-run --diff",
"cs-fix": "php-cs-fixer fix -v --diff"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}