forked from Payum/Payum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
111 lines (111 loc) · 4.08 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
111
{
"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",
"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": "[email protected]"
},
{
"name": "Payum project",
"homepage": "http://payum.org/"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Payum/Payum/contributors"
}
],
"require": {
"php": ">=5.5.0",
"payum/iso4217": "~1.0",
"guzzlehttp/guzzle": "~6.0",
"league/url": "~3.0",
"twig/twig": "~1.0"
},
"require-dev": {
"ext-curl": "*",
"ext-pdo_sqlite": "*",
"doctrine/orm": "2.3.*",
"doctrine/mongodb": "1.0.*@dev",
"doctrine/mongodb-odm": "1.0.*@dev",
"phpunit/phpunit": "~4.0",
"propel/propel1": "~1.7",
"psr/log": "~1.0",
"zendframework/zend-db": "~2",
"symfony/routing": "~2.3",
"symfony/http-kernel": "~2.3",
"symfony/http-foundation": "~2.3",
"symfony/form": "~2.3",
"symfony/validator": "~2.6",
"authorizenet/authorizenet": "~1.8",
"paypal/rest-api-sdk-php" : "0.5.*",
"klarna/checkout": "~1|~2.0",
"fp/klarna-invoice": "0.1.*",
"stripe/stripe-php": "~1.0",
"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"
},
"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",
"propel/propel1": "If you want to store models to Propel1 ORM",
"propel/propel": "If you want to store models to Propel2 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 HttpResponse reply from symfony's bridge",
"symfony/form": "If you want to use forms",
"monolog/monolog": "In case you want to use PSR-3 logger",
"authorizenet/authorizenet": "If you want to use Authorizenet.NET install authorizenet/authorizenet:~1.8 library",
"paypal/rest-api-sdk-php" : "If you want to use PayPal REST API install paypal/rest-api-sdk-php:0.5.* library",
"klarna/checkout": "If you want to use Klarna Checkout install klarna/checkout:~1|~2.0 library",
"fp/klarna-invoice": "If you want to use Klarna Invoice install fp/klarna-invoice:0.1.* library",
"stripe/stripe-php": "If you want to use Stripe install stripe/stripe-php:~1.0 library",
"ext-soap": "If you want to use Payex install ext-soap:* library"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": { "Payum": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}