This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
/
composer.json
61 lines (61 loc) · 1.55 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "moip/moip-sdk-php",
"description": "Cliente em PHP para integração server-side com APIs Moip v2",
"keywords": ["libraries", "moip", "intermediary", "checkout", "marketplace"],
"homepage": "http://dev.moip.com.br",
"license": "MIT",
"type": "libraries",
"support": {
"issues": "https://github.com/moip/moip-sdk-php/issues",
"source": "https://github.com/moip/moip-sdk-php"
},
"authors": [
{
"name": "Jean Cesar Garcia",
"email": "[email protected]"
},
{
"name": "Joao Batista Neto",
"email": "[email protected]"
},
{
"name": "Caio Gaspar",
"email": "[email protected]"
},
{
"name": "João Lucas Lucchetta",
"email": "[email protected]"
},
{
"name": "Matheus Nakaya",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5",
"rmccue/requests": ">=1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8.35 || ^5.7 || ^6.4",
"codacy/coverage": "dev-master"
},
"autoload": {
"psr-4": {
"Moip\\": "src/"
},
"files": [
"src/Helper/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Moip\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"minimum-stability": "dev"
}