-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 989 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
{
"name": "vantiv/devhub-sdk-php",
"type": "library",
"description": "The Vantiv PHP DebHub SDK is a PHP implementation of the [Vantiv DevHub](https://apideveloper.vantiv.com/) REST API. This SDK was created to make it as easy as possible to connect process your payments with Vantiv DevHub",
"keywords": ["vantiv","sdk","debhub","ecommerce","payments"],
"homepage": "https://apideveloper.vantiv.com/",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Vantiv SDK",
"email": "[email protected]",
"homepage": "https://apideveloper.vantiv.com/",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"satooshi/php-coveralls": "^1.0",
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {"Vantiv\\": "src"}
},
"autoload-dev": {
"psr-4": {"Vantiv\\Test\\": "tests/src"}
}
}