forked from Payum/PayumBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
85 lines (84 loc) · 2.4 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
{
"name": "payum/payum-bundle",
"type": "symfony-bundle",
"description": "Rich payment solutions for symfony2. Paypal, payex, authorize.net, be2bill, omnipay, recurring payments, instant notifications and many more",
"keywords": [
"symfony",
"payment",
"paypal",
"be2bill",
"authorize.net",
"omnipay",
"paypal express checkout",
"paypal pro checkout",
"recurring payment",
"instant notifications",
"payex",
"klarna",
"offline",
"stripe",
"stripe.js",
"stripe checkout"
],
"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/PayumBundle/contributors"
}
],
"require": {
"php": ">=5.5.0",
"payum/core": "1.0.*@dev",
"symfony/framework-bundle": "~2.7",
"symfony/twig-bundle": "~2.7",
"symfony/form": "~2.7",
"symfony/validator": "~2.7"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"twig/twig": "~1.16",
"symfony/expression-language": "~2.7",
"symfony/browser-kit": "~2.7",
"symfony/class-loader": "~2.7",
"sonata-project/admin-bundle": "~2.0",
"doctrine/orm": "2.3.*",
"payum/payum": "1.0.*@dev",
"payum/omnipay-bridge": "1.0.*@dev",
"payum/jms-payment-bridge": "1.0.*@dev",
"omnipay/dummy": "~2.0",
"omnipay/stripe": "~2.0",
"omnipay/paypal": "~2.0",
"ext-curl": "*",
"ext-pdo_sqlite": "*",
"ajbdev/authorizenet-php-api": "1.1.*",
"paypal/rest-api-sdk-php" : "0.5.*",
"klarna/checkout": "~1|~2.0",
"fp/klarna-invoice": "0.1.*",
"stripe/stripe-php": "~1.0",
"ext-soap": "*"
},
"suggest": {
"sonata-project/admin-bundle": "If you want to configure payments in the backend."
},
"autoload": {
"psr-4": { "Payum\\Bundle\\PayumBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"bin-dir": "bin"
}
}