forked from Payum/Payum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.78 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
49
50
51
52
{
"name": "payum/payum",
"type": "library",
"description": "Payment lib",
"keywords": ["payment", "paypal", "paypal ipn", "paypal digital goods", "paypal recurring payments", "authorize.net", "be2bill", "omnipay gateways"],
"homepage": "",
"license": "MIT",
"authors": [
{
"name": "Kotlyar Maksim",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.2",
"kriswallsmith/buzz": "*"
},
"require-dev": {
"ext-curl": "*",
"ext-pdo_sqlite": "*",
"doctrine/orm": "2.*",
"doctrine/mongodb": "1.0.*@dev",
"doctrine/mongodb-odm": "1.0.*@dev",
"fp/testo": "dev-master",
"phpunit/phpunit": "3.7.*",
"psr/log": "~1.0"
},
"suggest": {
"payum/paypal-express-checkout-nvp": "If you want to use paypal express checkout, digital goods or recurring payments",
"payum/paypal-pro-checkout-nvp": "If you want to use paypal pro checkout",
"payum/paypal-ipn": "If you want to use paypal instant payment notifications(Paypal IPN)",
"payum/authorize-net-aim": "If you want to use Authorize.Net AIM payment gateway",
"payum/be2bill": "If you want to use be2bill payment gateway",
"payum/omnipay-bridge": "If you want to use omnipay's gateways",
"doctrine/orm": "If you want to store models to database using doctrin2 ORM",
"doctrine/mongodb-odm": "If you want to store models to mongo doctrin2 ODM",
"monolog/monolog": "In case you want to use logger"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"Payum": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.6-dev"
}
}
}