-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (62 loc) · 1.51 KB
/
composer.json
File metadata and controls
63 lines (62 loc) · 1.51 KB
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
63
{
"name": "armando-ibarra/test-php",
"description": "Checkout.com SDK for PHP",
"homepage": "https://github.com/Armando-Ibarra/test-checkout_php",
"type": "library",
"license": "MIT",
"keywords": [
"checkout.com",
"payment",
"gateway",
"checkout",
"checkoutcom",
"GW3",
"CKO",
"Reboot",
"SDK",
"Library",
"PHP",
"API"
],
"authors": [
{
"name": "Armando Ibarra",
"homepage": "https://github.com/Armando-Ibarra",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.4.1",
"symfony/polyfill-php80": "^1.23.1",
"symfony/deprecation-contracts": "^2.5",
"ext-fileinfo": "*",
"wikimedia/composer-merge-plugin": "^2.0"
},
"require-dev": {
"phpstan/phpstan": "^1.2.0",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpunit/phpunit": "^9.5.10",
"symfony/phpunit-bridge": "^6.0.0",
"mockery/mockery": "^1.4"
},
"autoload": {
"psr-4": {
"Checkout\\": "lib/Checkout"
}
},
"autoload-dev": {
"psr-4": {
"Checkout\\Tests\\": "test/Checkout/Tests/"
}
},
"extra": {
"merge-plugin": {
"include": [
"version.local.json"
]
}
}
}