-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
107 lines (107 loc) · 3.28 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "payum/payum",
"type": "library",
"description": "One million downloads of Payum already! Payum offers everything you need to work with payments. Friendly for all PHP frameworks (Symfony, Laravel, Zend, Yii, Silex). Check more visiting site.",
"keywords": [
"payment",
"recurring payment",
"payout",
"withdrawal",
"instant payment notification",
"ipn",
"paypal",
"paypal express",
"paypal pro",
"paypal rest",
"paypal digital goods",
"authorize.net",
"be2bill",
"payex",
"stripe",
"stripe.js",
"stripe checkout",
"jms payment"
],
"homepage": "https://payum.forma-pro.com",
"license": "MIT",
"authors": [
{
"name": "Kotlyar Maksim",
"email": "[email protected]"
},
{
"name": "Payum project",
"homepage": "https://payum.forma-pro.com/"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Payum/Payum/contributors"
}
],
"require": {
"php": "^7.1.3",
"payum/iso4217": "~1.0",
"php-http/message": "^1.0",
"php-http/client-implementation": "^1.0",
"league/uri": "^5.0",
"twig/twig": "~1.0|~2.0"
},
"require-dev": {
"ext-curl": "*",
"ext-pdo_sqlite": "*",
"payum/omnipay-v3-bridge": "^1@alpha",
"omnipay/dummy": "^3@alpha",
"omnipay/common": "^3@dev",
"doctrine/orm": "^2.5",
"phpunit/phpunit": "^7.5",
"propel/propel1": "~1.7",
"psr/log": "~1.0",
"zendframework/zend-db": "~2",
"symfony/routing": "^4.4|^5.0",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/http-foundation": "^4.4|^5.0",
"symfony/form": "^4.4|^5.0",
"symfony/templating": "^4.4|^5.0",
"symfony/validator": "^4.4|^5.0",
"symfony/phpunit-bridge": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"authorizenet/authorizenet": "~1.8",
"sofort/sofortlib-php": "^3.0",
"paypal/rest-api-sdk-php" : "0.5.*",
"klarna/checkout": "~1|~2.0",
"fp/klarna-invoice": "0.1.*",
"stripe/stripe-php": "~2.0|~3.0",
"php-http/guzzle6-adapter": "^1.1.1",
"defuse/php-encryption": "^2",
"ext-soap": "*"
},
"replace": {
"payum/core": "^1",
"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/klarna-invoice": "self.version",
"payum/authorize-net-aim": "self.version",
"payum/be2bill": "self.version",
"payum/payex": "self.version",
"payum/offline": "self.version",
"payum/stripe": "self.version",
"payum/sofort": "self.version"
},
"conflict": {
"league/uri-components": "<1.7.1"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": { "Payum\\": "src/Payum/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.5-dev"
}
}
}