-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
63 lines (63 loc) · 2.03 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
{
"name": "payum/payum-laravel-package",
"type": "library",
"description": "Rich payment solutions for Laravel framework. Paypal, payex, authorize.net, be2bill, omnipay, recurring paymens, instant notifications and many more",
"keywords": [
"payment",
"paypal",
"be2bill",
"authorize.net",
"klarna",
"omnipay",
"paypal express checkout",
"paypal pro checkout",
"recurring payment",
"payex",
"offline",
"instant notification",
"stripe"
],
"homepage": "http://payum.forma-dev.com",
"license": "MIT",
"authors": [
{
"name": "Kotlyar Maksim",
"email": "kotlyar.maksim@gmail.com"
},
{
"name": "Payum project",
"homepage": "http://payum.forma-dev.com/"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Payum/PayumLaravelPackage/contributors"
}
],
"require": {
"php": ">=5.5.0",
"illuminate/container": "^4|^5.1|^6.0|^7.0|^8.0",
"illuminate/routing": "^4|^5.1|^6.0|^7.0|^8.0",
"illuminate/support": "^4|^5.1|^6.0|^7.0|^8.0",
"payum/core": "^1"
},
"suggest": {
"payum/paypal-express-checkout-nvp": "If you want to use paypal express checkout nvp gateway",
"payum/paypal-pro-checkout-nvp": "If you want to use paypal pro checkout nvp gateway",
"payum/authorize-net-aim": "If you want to use authorize.net gateway",
"payum/be2bill": "If you want to use be2bill gateway",
"payum/payex": "If you want to use payex gateway",
"payum/omnipay-bridge": "If you want to use omnipay provided gateways",
"payum/stripe": "If you want to use omnipay provided gateways"
},
"autoload": {
"psr-0": { "Payum\\LaravelPackage": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"bin-dir": "bin"
}
}