-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
29 lines (29 loc) · 999 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
{
"name": "vantiv/cnp-chargeback-sdk",
"type": "library",
"description": "The Vantiv eCommerce PHP SDK is a PHP implementation of the [Vantiv eCommerce](https://developer.vantiv.com/community/ecommerce). XML API. This SDK was created to make it as easy as possible to connect process your payments with Vantiv eCommerce",
"keywords": ["vantiv","sdk","ecommerce","payments", "cnp"],
"homepage": "https://developer.vantiv.com/community/ecommerce",
"license": "MIT",
"authors": [
{
"name": "Vantiv eCommerce Chargeback SDK",
"email": "sdksupport@vantiv.com",
"homepage": "https://developer.vantiv.com/community/ecommerce",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0",
"phpseclib/phpseclib": "2.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"scripts": {
"test": "phpunit"
},
"autoload":{
"psr-0":{"cnp\\sdk" : "."}
}
}