-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.03 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.03 KB
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
45
46
47
48
{
"name": "srvcloud/parcelex-php",
"description": "Um php-client para a integração com a API do https://docs.parcelex.com.br.",
"type": "lib",
"keywords": [
"parcelex",
"pagamentos",
"payments brazil",
"pagamento brasil",
"parcelamento",
"boleto",
"parcelamento boleto",
"api"
],
"homepage": "https://www.parcelex.com.br/",
"license": "MIT",
"authors": [
{
"name": "SRVCloud",
"email": "contato@srvcloud.com.br"
},
{
"name": "Hugo Zabini",
"email": "hugo.zabini98@hotmail.com"
}
],
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": [
"@composer install",
"vendor/bin/phpunit tests"
]
},
"autoload": {
"psr-4": {
"Parcelex\\": "src/"
}
},
"autoload-dev": {
"psr-4": {}
}
}