-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 924 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
38
39
40
{
"name": "rcngo/cpfcnpj",
"description": "Cpf or Cnpj Functions",
"license": "MIT",
"authors": [
{
"name": "Rafael da Cruz Nascimento",
"email": "[email protected]"
}
],
"require": {
"php": "7.* || 8.*",
"illuminate/support": "7.*"
},
"autoload": {
"psr-4": {
"rcngo\\cpfcnpj\\": "src/"
}
},
"autoload-dev": {
"classmap": ["tests/"],
"psr-4": {
"rcngo\\cpfcnpj\\Tests\\": "tests"
}
},
"require-dev": {
"orchestra/testbench": "~v5.4.0",
"phpunit/phpunit": "9.2.*"
},
"extra": {
"laravel": {
"providers": [
"rcngo\\cpfcnpj\\Provider\\CpfCnpjServiceProvider"
],
"aliases": {
"cpfcnpj": "rcngo\\cpfcnpj\\Facade\\CpfCnpj"
}
}
}
}