forked from andersondanilo/CnabPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·35 lines (35 loc) · 927 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
{
"name": "andersondanilo/cnab_php",
"type": "library",
"description": "Projeto para criar arquivos de remessas e processar arquivos de retorno no formato CNAB",
"keywords": ["boleto", "remessa", "retorno"],
"licence": "MIT",
"authors": [
{
"name": "Anderson Danilo",
"email": "[email protected]"
},
{
"name": "Hermenegildo Marin Junior",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "3.7.*",
"phpunit/php-code-coverage": "1.2.*",
"codeclimate/php-test-reporter": "dev-master"
},
"require": {
"andersondanilo/cnab_yaml": "~1.3",
"php": ">=5.4.0",
"mustangostang/spyc": "0.5.*"
},
"autoload": {
"psr-4": {
"Cnab\\": "src/Cnab"
}
},
"config": {
"bin-dir": "bin"
}
}