forked from Payum/Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 3.94 KB
/
composer.json
File metadata and controls
96 lines (96 loc) · 3.94 KB
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
{
"name": "payum/core",
"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",
"subscription",
"authorize",
"capture",
"payout",
"refund",
"notify"
],
"homepage": "https://payum.forma-pro.com/",
"license": "MIT",
"authors": [
{
"name": "Kotlyar Maksim",
"email": "kotlyar.maksim@gmail.com"
},
{
"name": "Payum project",
"homepage": "https://payum.forma-pro.com/"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Payum/Payum/contributors"
}
],
"require": {
"php": "^7.0",
"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.*",
"phpunit/phpunit": "^5.7",
"propel/propel1": "~1.7",
"psr/log": "~1.0",
"php-http/guzzle6-adapter": "^1.0",
"zendframework/zend-db": "~2",
"symfony/routing": "^3.1|^4",
"symfony/http-kernel": "^3.1|^4",
"symfony/http-foundation": "^3.1|^4",
"symfony/form": "^3.1|^4",
"symfony/validator": "^3.1|^4",
"symfony/dependency-injection": "^3.1|^4",
"symfony/phpunit-bridge": "^3.1|^4",
"defuse/php-encryption": "^2"
},
"suggest": {
"payum/paypal-express-checkout-nvp": "self.version If you want to use paypal express checkout, digital goods or recurring payments",
"payum/paypal-pro-checkout-nvp": "self.version If you want to use paypal pro checkout",
"payum/paypal-rest": "self.version If you want to use paypal rest gateway",
"payum/paypal-ipn": "self.version If you want to use paypal instant payment notifications(Paypal IPN)",
"payum/authorize-net-aim": "self.version If you want to use Authorize.Net AIM payment gateway",
"payum/be2bill": "self.version If you want to use be2bill payment gateway",
"payum/payex": "self.version If you want to use payex payment gateway",
"payum/omnipay-v3-bridge": "^1 If you want to use omnipay's gateways",
"doctrine/orm": "~2.3 If you want to store models to database using doctrin2 ORM",
"doctrine/mongodb-odm": "~1.1 If you want to store models to mongo doctrin2 ODM",
"zendframework/zend-db": "~2.0 If you want to store models to Zend Db ORM",
"propel/propel1": "~1.7 If you want to store models to Propel1 ORM",
"propel/propel": "If you want to store models to Propel2 ORM",
"symfony/routing": "~2.8|~3.0 If you want to use TokenFactory from symfony's bridge",
"symfony/http-kernel": "~2.8|~3.0 If you want to use HttpRequestVerifier from symfony's bridge",
"symfony/http-foundation": "~2.8|~3.0 If you want to use HttpRequestVerifier or HttpResponse reply from symfony's bridge",
"symfony/form": "~2.8|~3.0 If you want to use forms",
"symfony/dependency-injection": "~2.8|~3.0 If you want to use container aware stuff",
"monolog/monolog": "~1.0 If you want to use PSR-3 logger",
"defuse/php-encryption": "^2 If you want to encrypt gateways credentials in database"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": { "Payum\\Core\\": "" }
},
"target-dir": "Payum/Core",
"extra": {
"branch-alias": {
"dev-master": "1.5-dev"
}
}
}