forked from Vantiv/cnp-sdk-for-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 1020 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/cnp-payments-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 SDK",
"email": "[email protected]",
"homepage": "https://developer.vantiv.com/community/ecommerce",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.0",
"phpseclib/phpseclib": "~3.0.35"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"scripts": {
"test": "phpunit"
},
"autoload":{
"psr-0":{"cnp\\sdk" : "."},
"classmap": ["cnp/"]
}
}