-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
51 lines (51 loc) · 1005 Bytes
/
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
{
"name": "gopay/payments-sdk-php",
"description": "GoPay's PHP SDK for Payments REST API",
"keywords": [
"gopay",
"payments",
"sdk",
"rest",
"api"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "GoPay",
"homepage": "https://github.com/gopaycommunity/gopay-php-api/contributors"
}
],
"config": {
"bin-dir": "bin",
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"GoPay\\": "src/"
},
"files": [
"factory.php"
],
"classmap": [
"src/"
]
},
"autoload-dev": {
"files": [
"tests/integration/GivenGoPay.php",
"vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest.php"
]
},
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "^7.7.0",
"symfony/deprecation-contracts": "^3.3.0"
},
"require-dev": {
"phpunit/phpunit": "9.3.7",
"hamcrest/hamcrest-php": "*",
"phpspec/prophecy": "~1.0",
"phpspec/prophecy-phpunit": "^2.0"
}
}