-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.23 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.23 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
{
"name": "icepay/checkout-sdk",
"description": "ICEPAY PHP SDK for integrating Checkout API.",
"type": "library",
"require": {
"ext-json": "*",
"php": ">=8.1",
"php-http/discovery": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message-implementation": "^1.0",
"psr/http-client": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.7",
"symfony/http-client": "^8.0",
"nyholm/psr7": "^1.8",
"vlucas/phpdotenv": "^5.6"
},
"suggest": {
"symfony/http-client": "For using the Symfony HTTP Client as the HTTP client implementation.",
"nyholm/psr7": "For using Nyholm PSR-7 as the PSR-7 implementation.",
"guzzlehttp/guzzle": "For using Guzzle as the HTTP client implementation.",
"laminas/laminas-diactoros": "For using Laminas Diactoros as the PSR-7 implementation."
},
"autoload": {
"psr-4": {
"ICEPAY\\Checkout\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ICEPAY\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"phpunit": "@php ./vendor/phpunit/phpunit/phpunit"
}
}