-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
32 lines (32 loc) · 1.1 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
29
30
31
32
{
"name": "mmtdigital/paypalexpresscheckout",
"type": "library",
"description": "Simple Paypal Express Checkout Wrapper",
"keywords": ["paypal", "express", "checkout", "api", "nvp"],
"homepage": "https://github.com/MMTDigital/PaypalExpressCheckout",
"license": "MIT",
"authors": [
{
"name": "Ben Squire",
"email": "ben.s@mmtdigital.co.uk",
"homepage": "https://github.com/MMTDigital/PaypalExpressCheckout"
}
],
"support": {
"issues": "https://github.com/MMTDigital/PaypalExpressCheckout/issues",
"wiki": "https://github.com/MMTDigital/PaypalExpressCheckout/wiki"
},
"require": {
"php": ">=5.3.0",
"ext-hash": "*"
},
"suggest": {
"ext-openssl": "The OpenSSL extension is used as the default source of cryptographically strong random data.",
"ext-mcrypt": "The Mcrypt extension is used as a source of cryptographically strong random data in the absence of ext-openssl."
},
"autoload": {
"psr-0": {
"PaypalExpressCheckout": "src/"
}
}
}