-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.24 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
{
"name": "gabrielmoura/laravel-cep",
"description": "A simple Laravel package to get CEP information",
"type": "library",
"keywords": [
"laravel",
"cep",
"redis"
],
"require": {
"php": "^8.2",
"illuminate/http": "*"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"laravel/pint": "^1.13",
"orchestra/testbench": "^8.0"
},
"suggest": {
"illuminate/redis": "^v10"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Gabrielmoura\\LaravelCep\\": "src/"
}
},
"authors": [
{
"name": "Gabriel Moura",
"email": "[email protected]"
}
],
"scripts": {
"post-autoload-dump": "@prepare",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"test": "@php vendor/bin/phpunit --colors=always",
"phpstan": "@php vendor/bin/phpstan --no-progress --no-interaction --ansi --error-format=github",
"pint": "@php vendor/bin/pint"
},
"extra": {
"laravel": {
"providers": [
"Gabrielmoura\\LaravelCep\\LaravelCepServiceProvider"
]
}
},
"minimum-stability": "dev"
}