-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
37 lines (37 loc) · 1019 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
36
37
{
"name": "claudsonm/cep-promise-php",
"description": "Busca por CEP utilizando Promises nos serviços dos Correios, ViaCEP, CepAberto e outros.",
"keywords": ["promise", "cep", "correios", "viacep", "cepaberto", "cep aberto", "php"],
"license": "MIT",
"authors": [
{
"name": "Claudson Martins",
"email": "[email protected]",
"homepage": "https://github.com/claudsonm"
}
],
"require": {
"php": "^7.4 | ^8.0",
"guzzlehttp/guzzle": "~7.2",
"ext-simplexml": "*",
"ext-json": "*"
},
"require-dev": {
"symfony/var-dumper": "^5.4",
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.11"
},
"autoload": {
"psr-4": {
"Claudsonm\\CepPromise\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Claudsonm\\CepPromise\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}