forked from MicahCarrick/PHP-PayPal-IPN
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1012 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
31
32
33
34
35
36
37
38
39
{
"name": "dezlov/php-paypal-ipn",
"description": "A class for handling Instant Payment Notifications (IPN) from PayPal.",
"homepage": "https://github.com/dezlov/PHP-PayPal-IPN",
"keywords": ["paypal", "ipn", "php"],
"license": "GPL-2.0+",
"authors": [
{
"name": "Denis Kozlov",
"homepage": "https://github.com/dezlov/",
"role": "Current Maintainer"
},
{
"name": "Wade Shuler",
"homepage": "https://github.com/WadeShuler/",
"role": "Forked Author (up to v2.5.2)"
},
{
"name": "Micah Carrick",
"homepage": "https://github.com/Quixotix/",
"role": "Original Author (up to v2.1.0)"
}
],
"support": {
"issues": "https://github.com/dezlov/PHP-PayPal-IPN/issues",
"source": "https://github.com/dezlov/PHP-PayPal-IPN/"
},
"require": {
"php": ">=5.3.0"
},
"suggest": {
"ext-curl": "Network communication library which will enable additional features."
},
"autoload": {
"psr-4": {
"dezlov\\PayPal\\": "src/"
}
}
}