-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
97 lines (97 loc) · 3.94 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
{
"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, Laminas, 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": "[email protected]"
},
{
"name": "Payum project",
"homepage": "https://payum.forma-pro.com/"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Payum/Payum/contributors"
}
],
"require": {
"php": "^8.0",
"alcohol/iso4217": "^4.0",
"php-http/message": "^1.0",
"php-http/client-implementation": "^1.0",
"psr/log": "^1 || ^2 || ^3",
"league/uri": "^6.4",
"league/uri-components": "^2.2",
"twig/twig": "^2.4 || ^3.0"
},
"require-dev": {
"ext-curl": "*",
"ext-pdo_sqlite": "*",
"payum/omnipay-v3-bridge": "^1.0",
"omnipay/dummy": "^3.0",
"omnipay/common": "^3.0",
"doctrine/dbal": "^2",
"doctrine/orm": "2.*",
"doctrine/persistence": "^1.3.3|^2.0",
"phpunit/phpunit": "^9.5",
"php-http/guzzle7-adapter": "^1.0",
"laminas/laminas-db": "^2.0",
"symfony/cache": "^4.4|^5.0",
"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/validator": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/phpunit-bridge": "^6.0",
"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": "~2.0 If you want to store models to mongo doctrin2 ODM",
"laminas/laminas-db": "~2.0 If you want to store models to Laminas Db ORM",
"symfony/routing": "^4.4|^5.0 If you want to use TokenFactory from symfony's bridge",
"symfony/http-kernel": "^4.4|^5.0 If you want to use HttpRequestVerifier from symfony's bridge",
"symfony/http-foundation": "^4.4|^5.0 If you want to use HttpRequestVerifier or HttpResponse reply from symfony's bridge",
"symfony/form": "^4.4|^5.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": "2.0.x-dev"
}
}
}