-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·34 lines (34 loc) · 992 Bytes
/
composer.json
File metadata and controls
executable file
·34 lines (34 loc) · 992 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": "laravellegends/pt-br-validator",
"description": "Uma biblioteca contendo validações de formatos Brasileiros, para o Laravel",
"license": "MIT",
"authors": [
{
"name": "Wallace de Souza Vizerra",
"email": "wallacemaxters@gmail.com"
}
],
"require": {
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0"
},
"autoload": {
"psr-4": {
"LaravelLegends\\PtBrValidator\\": "src/pt-br-validator"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelLegends\\PtBrValidator\\ValidatorProvider"
]
}
},
"minimum-stability": "stable",
"require-dev": {
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^10.0 || ^11.0",
"phpunit/phpunit": "^8.3 || ^9.0 || ^11.5.3 || ^12.0"
},
"scripts": {
"test": "./vendor/bin/phpunit"
}
}