-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.17 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.17 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
{
"name": "goplus/php-sdk",
"description": "GoPlus API SDK for PHP",
"keywords": [
"goplus",
"sdk",
"api"
],
"homepage": "https://github.com/GoPlusSecurity/goplus-sdk-php",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "GoPlus",
"email": "service@gopluslabs.io",
"homepage": "https://gopluslabs.io"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.0.0",
"guzzlehttp/psr7": "^1.7 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "~3.7"
},
"autoload": {
"psr-4": {
"Goplus\\": "src/goplus",
"Swagger\\Client\\": "src/lib/client"
},
"files": [
"src/goplus/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix $1",
"test": "./vendor/bin/phpunit"
}
}