-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.14 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
{
"name" : "crtlmota/banco-sicredi-connector",
"type" : "package",
"authors" : [
{
"name": "Ctrl-Mota",
"email": "lucas.d.mota@gmail.com",
"homepage": "https://github.com/Ctrl-Mota",
"role": "Desenvolvedor"
}
],
"description" : "Abstração de comunicação rest com a API do Banco Sicredi v3.3, apenas curl",
"homepage" : "https://github.com/Ctrl-Mota/banco-sicredi-connector-php",
"license" : "LGPL-3.0-or-later",
"keywords" : [
"Banco Sicredi Boletos Cobrança webhook"
],
"autoload" : {
"psr-4" : {
"crtlmota\\BancoSicrediConnector\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"crtlmota\\BancoSicrediConnector\\Tests\\" : "tests"
}
},
"require" : {
"php" : ">=7.4"
},
"require-dev" : {
"squizlabs/php_codesniffer" : "^3.5",
"phpunit/phpunit" : "^9.1",
"scrutinizer/ocular" : "^1.3",
"phpstan/phpstan" : "^0.12",
"fakerphp/faker": "^1.19",
"vlucas/phpdotenv" : "^5.4"
},
"scripts" : {
"phpcbf" : "vendor/bin/phpcbf --standard=psr2 src",
"phpcs" : "vendor/bin/phpcs --standard=psr2 src",
"phpstan" : "vendor/bin/phpstan analyse src/ --level 7"
}
}