-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (47 loc) · 1.38 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
{
"name": "wemakecustom/mango-pay-bundle",
"type": "symfony-bundle",
"description": "Symfony 2 MangoPayBundle, a wrapper for MangoPay 2 Api",
"keywords": ["mangopay"],
"homepage": "http://www.wemakecustom.com",
"license": "MIT",
"authors": [
{
"name": "Léo Benoist",
"email": "[email protected]",
"homepage": "https://http://www.wemakecustom.com"
}
],
"require": {
"php": ">=5.4.0",
"symfony/framework-bundle": ">=2.3",
"mangopay/mangopay2-php-sdk": "*"
},
"autoload": {
"psr-4": {
"WMC\\MangoPayBundle": ""
}
},
"target-dir": "WMC/MangoPayBundle",
"repositories": [
{
"type": "package",
"package": {
"name": "mangopay/mangopay2-php-sdk",
"version": "master",
"source": {
"url": "git://github.com/MangoPay/mangopay2-php-sdk.git",
"type": "git",
"reference": "master"
},
"dist": {
"url": "https://github.com/MangoPay/mangopay2-php-sdk/archive/master.zip",
"type": "zip"
},
"autoload": {
"files": ["MangoPaySDK/mangoPayApi.inc"]
}
}
}
]
}