forked from allgood/APInter-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 764 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 764 Bytes
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" : "ctodobom/api-inter",
"type" : "package",
"description" : "Acesso à API do Banco Inter",
"license" : "LGPL-3.0",
"keywords" : [
"Banco Inter Intermedium Boletos Cobrança"
],
"autoload" : {
"psr-4" : {
"ctodobom\\APInterPHP\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"ctodobom\\APInterPHP\\Tests\\" : "tests"
}
},
"require" : {
"php" : ">=7.3"
},
"require-dev" : {
"squizlabs/php_codesniffer" : "^3.5",
"phpunit/phpunit" : "^9.1",
"scrutinizer/ocular" : "^1.3",
"phpstan/phpstan" : "^0.12",
"fzaninotto/faker" : "^1.9"
},
"scripts" : {
"phpcbf" : "vendor/bin/phpcbf --standard=psr2 src",
"phpcs" : "vendor/bin/phpcs --standard=psr2 src",
"phpstan" : "vendor/bin/phpstan analyse src/ --level 7"
}
}