forked from xendit/xendit-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 786 Bytes
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 786 Bytes
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
{
"name": "xendit/xendit-php",
"description": "PHP clients for Xendit API",
"version": "2.6.0",
"license": "MIT",
"keywords": [
"xendit"
],
"homepage": "https://github.com/xendit/xendit-php",
"type": "library",
"minimum-stability": "stable",
"require": {
"php": ">=7.2.0",
"guzzlehttp/guzzle": ">=6.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Xendit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Xendit\\": [
"tests/",
"tests/Xendit/"
]
}
},
"require-dev": {
"phpunit/phpunit": "^8.5.13",
"squizlabs/php_codesniffer": "~3.5",
"vlucas/phpdotenv": "^4.1"
}
}