-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
48 lines (48 loc) · 1.68 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "payum/payum-module",
"description": "Rich payment solutions for zend framework2. Paypal, payex, authorize.net, be2bill, omnipay, recurring paymens, instant notifications and many more",
"type": "library",
"license": "MIT",
"homepage": "http://payum.forma-dev.com",
"keywords": ["payum", "payment", "zf2", "zend", "paypal", "be2bill", "authorize.net", "payex", "omnipay", "recurring payment", "ipn"],
"authors": [
{
"name": "Kotlyar Maksim",
"email": "[email protected]"
},
{
"name": "Payum project",
"homepage": "http://payum.forma-dev.com/"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Payum/PayumModule/contributors"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "~2.2",
"payum/core": "^1.4"
},
"suggest": {
"payum/paypal-express-checkout-nvp": "If you want to use paypal express checkout nvp gateway",
"payum/paypal-pro-checkout-nvp": "If you want to use paypal pro checkout nvp gateway",
"payum/authorize-net-aim": "If you want to use authorize.net gateway",
"payum/be2bill": "If you want to use be2bill gateway",
"payum/payex": "If you want to use payex gateway",
"payum/omnipay-bridge": "If you want to use omnipay provided gateways"
},
"autoload": {
"psr-0": {
"Payum\\PayumModule": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"bin-dir": "bin"
}
}