-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (45 loc) · 1.17 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
{
"name": "partfire/mangopay-bundle",
"description": "A set of Symfony services for use in your project in integrate with MangoPay API faster.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Carl Owens",
"email": "carl@partfire.co.uk",
"homepage": "https://partfire.co.uk"
},
{
"name": "Graham Owens",
"email": "gra@partfire.co.uk",
"homepage": "https://partfire.co.uk"
},
{
"name": "PartFire Ltd",
"homepage": "https://github.com/PartFire"
}
],
"require": {
"php": "^7.1",
"symfony/framework-bundle": "^2.7 || ^3.0",
"mangopay/php-sdk-v2": "^2.4"
},
"require-dev": {
"phpspec/phpspec": "~2.0"
},
"autoload": {
"psr-4": {
"PartFire\\MangoPayBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/",
"spec"
]
},
"autoload-dev": {
"psr-4": {
"PartFire\\MangoPayBundle\\Tests\\": "Tests/",
"PartFire\\MangoPayBundle\\spec\\": "spec/"
}
}
}