-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
42 lines (42 loc) · 1016 Bytes
/
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
{
"name": "payum/payum-silex-provider",
"type": "library",
"description": "Payum offers everything you need to work with payments. From simplest use cases to very advanced ones.",
"keywords": ["payment", "silex"],
"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/PayumSilexProvider/contributors"
}
],
"require": {
"php": ">=5.5.2",
"silex/silex": "^1.2",
"symfony/form": "^3",
"payum/core": "^1.2"
},
"suggest": {
"payum/payum": "If you want to install all supported gateways at once"
},
"autoload": {
"psr-0": { "Payum\\Silex": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"bin-dir": "bin"
}
}