forked from Payum/Payum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
110 lines (110 loc) · 3.73 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
108
109
110
{
"name": "payum/payum",
"type": "library",
"description": "Payum offers everything you need to work with payments. From simplest use cases to very advanced ones.",
"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": "http://payum.org",
"license": "MIT",
"authors": [
{
"name": "Kotlyar Maksim",
"email": "kotlyar.maksim@gmail.com"
},
{
"name": "Payum project",
"homepage": "http://payum.org/"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Payum/Payum/contributors"
}
],
"require": {
"php": "^5.5.0|^7.0",
"payum/iso4217": "~1.0",
"php-http/message": "^1.0",
"php-http/client-implementation": "^1.0",
"league/uri": "~4.0",
"twig/twig": "~1.0"
},
"require-dev": {
"ext-curl": "*",
"ext-pdo_sqlite": "*",
"payum/omnipay-bridge": "^1",
"omnipay/dummy": "~2.0",
"doctrine/orm": "2.5.*",
"phpunit/phpunit": "~4.0",
"propel/propel1": "~1.7",
"psr/log": "~1.0",
"zendframework/zend-db": "~2",
"symfony/routing": "~2.8|~3.0",
"symfony/http-kernel": "~2.8|~3.0",
"symfony/http-foundation": "~2.8|~3.0",
"symfony/form": "~2.8|~3.0",
"symfony/templating": "~2.8|~3.0",
"symfony/validator": "~2.8|~3.0",
"symfony/phpunit-bridge": "~2.8|~3.0",
"symfony/dependency-injection": "~2.8|~3.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",
"ext-soap": "*"
},
"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/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"
},
"suggest": {
"authorizenet/authorizenet": "~1.8 If you want to use Authorizenet.NET install authorizenet/authorizenet:~1.8 library",
"sofort/sofortlib-php": "~3.0 If you want to use Sofort install sofort/sofortlib-php:^3.0 library",
"paypal/rest-api-sdk-php" : "0.5.* If you want to use PayPal REST API install paypal/rest-api-sdk-php:0.5.* library",
"klarna/checkout": "~1.0|~2.0 If you want to use Klarna Checkout install klarna/checkout:~1|~2.0 library",
"fp/klarna-invoice": "0.1.* If you want to use Klarna Invoice install fp/klarna-invoice:0.1.* library",
"stripe/stripe-php": "~2.0|~3.0 If you want to use Stripe install stripe/stripe-php:~2.0|~3.0 library"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": { "Payum": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
}
}