forked from Payum/Payum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
92 lines (92 loc) · 3.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "payum/payum",
"type": "library",
"description": "Domain friendly payment framework. Paypal, payex, authorize.net, be2bill, omnipay, recurring paymens, instant notifications and many more",
"keywords": [
"payment",
"recurring payment",
"instant payment notification",
"ipn",
"paypal",
"paypal express",
"paypal pro",
"paypal rest",
"paypal digital goods",
"authorize.net",
"be2bill",
"payex",
"omnipay",
"jms payment"
],
"homepage": "http://payum.forma-dev.com",
"license": "MIT",
"authors": [
{
"name": "Kotlyar Maksim",
"email": "[email protected]"
},
{
"name": "Payum project",
"homepage": "http://payum.forma-dev.com/"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Payum/Payum/contributors"
}
],
"require": {
"php": ">=5.3.2",
"kriswallsmith/buzz": "*",
"ajbdev/authorizenet-php-api": "1.1.*",
"paypal/rest-api-sdk-php" : "0.5.*",
"omnipay/omnipay": "~1.0",
"klarna/checkout": "~1",
"ext-soap": "*"
},
"require-dev": {
"ext-curl": "*",
"ext-pdo_sqlite": "*",
"doctrine/orm": "2.3.*",
"doctrine/mongodb": "1.0.*@dev",
"doctrine/mongodb-odm": "1.0.*@dev",
"phpunit/phpunit": "3.7.*",
"psr/log": "~1.0",
"zendframework/zend-db": "~2",
"symfony/routing": "~2",
"symfony/http-kernel": "~2",
"symfony/http-foundation": "~2"
},
"replace": {
"payum/core": "self.version",
"payum/paypal-express-checkout-nvp": "self.version",
"payum/paypal-pro-checkout-nvp": "self.version",
"payum/paypal-rest": "self.version",
"payum/paypal-ipn": "self.version",
"payum/klarna-checkout": "self.version",
"payum/authorize-net-aim": "self.version",
"payum/be2bill": "self.version",
"payum/payex": "self.version",
"payum/omnipay-bridge": "self.version",
"payum/offline": "self.version"
},
"suggest": {
"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",
"zendframework/zend-db": "If you want to store models to Zend Db ORM",
"symfony/routing": "If you want to use TokenFactory from symfony's bridge",
"symfony/http-kernel": "If you want to use HttpRequestVerifier from symfony's bridge",
"symfony/http-foundation": "If you want to use HttpRequestVerifier or ResponseInteractiveRequest from symfony's bridge",
"monolog/monolog": "In case you want to use PSR-3 logger"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": { "Payum": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "0.9-dev"
}
}
}