-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
36 lines (36 loc) · 1 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
{
"name": "boletosimples/boletosimples",
"type": "library",
"description": "A PHP client library for easily accessing Boleto Simples API.",
"keywords": ["boleto","simples","boletosimples","ecommerce"],
"homepage": "http://api.boletosimples.com.br",
"license": "MIT",
"authors": [
{
"name": "Rafael Lima",
"email": "[email protected]",
"homepage": "http://rafael.adm.br/"
}
],
"support": {
"email": "[email protected]",
"issues": "http://github.com/BoletoSimples/boletosimples-php/issues",
"sources": "https://github.com/BoletoSimples/boletosimples-php"
},
"require": {
"guzzlehttp/guzzle": "5.*",
"commerceguys/guzzle-oauth2-plugin": "2.*"
},
"require-dev": {
"phpunit/phpunit": "4.5.*",
"php-vcr/php-vcr": "~1.2",
"php-vcr/phpunit-testlistener-vcr": "*",
"ptrofimov/xpmock": "dev-master"
},
"autoload": {
"psr-4": {
"BoletoSimples\\": ["src/BoletoSimples","src/BoletoSimples/Resources"]
},
"files": ["src/BoletoSimples.php"]
}
}