-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
58 lines (58 loc) · 1.42 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "jhowbhz/apigratis-sdk-php",
"description": "This package is free and can be used for API Brazil website functions",
"keywords": [
"apigratis",
"whatsapp",
"messages",
"api",
"brasil",
"correios",
"cep",
"messages free",
"php requests"
],
"homepage": "https://apibrasil.com.br",
"authors": [
{
"name": "Jhon",
"email": "contato@apibrasil.com.br",
"homepage": "https://apibrasil.com.br",
"role": "Developer"
}
],
"type": "library",
"license": "MIT",
"require": {
"php": "^8",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"orchestra/testbench": "^6.25"
},
"autoload": {
"psr-4": {
"ApiBrasil\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiBrasil\\Test\\": "tests"
}
},
"suggest": {
"ext-curl": "Required by ApiBrasil\\ to requests in services.",
"guzzlehttp/guzzle": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients."
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist"
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": false
}