-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·28 lines (28 loc) · 1.09 KB
/
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
{
"name": "first-data/gateway",
"description": "PHP SDK to be used with First Data IPG API v21.5.0. This SDK has been created and packaged to offer the easiest way to integrate your application into the First Data Gateway. This SDK gives you the ability to run transactions such as sales, preauthorizations, postauthorizations, credits, voids, and returns; transaction inquiries; setting up scheduled payments and much more.",
"keywords": ["Payment", "Gateway", "SDK", "Developer", "First Data"],
"homepage": "https://docs.firstdata.com/org/gateway",
"license": "MIT",
"authors": [
{
"name": "Pradyoth Rao",
"email": "[email protected]"
},
{
"name": "Brandon Garcia",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.2",
"ramsey/uuid": "^3 || ^4"
},
"autoload": {
"psr-4": { "FirstData\\FirstApi\\Client\\" : "src/" }
}
}