forked from gitplus-apps/payfluid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 865 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
{
"name": "gitplus/payfluid",
"description": "A wrapper around PayFluid's API",
"type": "library",
"license": "MIT",
"keywords": [
"payment",
"payfluid",
"etranzact",
"sdk"
],
"readme": "README.md",
"homepage": "https://github.com/gitplus-apps/payfluid",
"autoload": {
"psr-4": {
"Gitplus\\PayFluid\\": "src/"
}
},
"authors": [
{
"name": "Nana Osei Yeboah",
"email": "[email protected]",
"homepage": "https://twitter.com/yeboahnanaosei",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/gitplus-apps/payfluid/issues"
},
"require": {
"php": ">=7.4",
"phpseclib/phpseclib": "~2.0",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}