-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 943 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
{
"name": "tiagosampaio/nubank-php",
"description": "This is a great SDK for integration your PHP applications to Nubank API.",
"type": "library",
"keywords": ["integration", "sdk", "nubank", "php"],
"version": "0.1.0",
"require": {
"php":"^7.0",
"php-di/php-di": "^6.0",
"guzzlehttp/guzzle": "^6.3",
"monolog/monolog": "^1.24"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^3.4"
},
"license": "MIT",
"authors": [
{
"name": "Tiago Sampaio",
"email": "tiago@tiagosampaio.com"
}
],
"autoload": {
"psr-4": {
"Nubank\\": "src/"
},
"files": [
"src/app/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"NubankTest\\": "dev/test/unit/Nubank"
}
},
"minimum-stability": "stable"
}