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