-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 813 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 813 Bytes
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
{
"name": "gdaws/payum_braintree",
"type": "library",
"description": "A Payum extension for Braintree gateway integration",
"keywords": ["payment", "braintree", "payum"],
"license": "MIT",
"authors": [
{
"name": "Graham Daws",
"email": "graham.daws@gmail.com"
}
],
"require": {
"payum/core": "^1.3",
"braintree/braintree_php": "^3.21.0"
},
"require-dev": {
"payum/core": "^1.3@dev",
"php-http/guzzle6-adapter": "^1.0",
"phpunit/phpunit": "^5.7.6"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Payum\\Braintree\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
}
}