forked from softr/asaas-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 1.07 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
{
"name" : "jrcouto/asaas-php-sdk-v3",
"type" : "library",
"description": "Asaas.com PHP API Wrapper for V3",
"keywords" : ["Asaas", "API", "Payment SaaS", "Credit Card", "Boleto"],
"homepage" : "https://github.com/jeandrorc/asaas-php-sdk",
"license" : "MIT",
"authors": [
{
"name" : "Jeandro Couto",
"email" : "[email protected]",
"homepage": "http://www.jrcws.net"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"kriswallsmith/buzz": "~0.10",
"guzzle/guzzle" : "~3.7",
"guzzlehttp/guzzle" : "~5.0|~6.0"
},
"suggest": {
"kriswallsmith/buzz": "To use BuzzAdapter, require kriswallsmith/buzz:~0.10.",
"guzzle/guzzle" : "To use GuzzleAdapter, require guzzle/guzzle:~3.7.",
"guzzlehttp/guzzle" : "To use GuzzleHttpAdapter, require guzzlehttp/guzzle:~5.0|~6.0."
},
"autoload": {
"psr-4": {
"JRCouto\\Asaas\\": "src/"
}
},
"minimum-stability": "dev"
}