-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
41 lines (41 loc) · 1.06 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
{
"name": "payum/jms-payment-bridge",
"type": "library",
"description": "This bridge allows you to use jms payment plugins but in payum like way.",
"keywords": ["payment", "jms payment"],
"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/JMSPaymentBridge/contributors"
}
],
"require": {
"php": ">=5.5.0",
"payum/core": "~1.0",
"jms/payment-core-bundle": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": { "Payum\\Bridge\\JMSPayment": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}