forked from max-zu/nova-phone-number
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 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
41
{
"name": "dniccum/phone-number",
"description": "A Laravel Nova phone number field with input masking and validation support.",
"keywords": [
"laravel",
"nova",
"field",
"phone",
"number"
],
"authors": [
{
"name": "Doug Niccum",
"email": "dniccumdesign@gmail.com",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": ">=7.3.0",
"propaganistas/laravel-phone": "^4.0",
"laravel/nova": "^3.9"
},
"autoload": {
"psr-4": {
"Dniccum\\PhoneNumber\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Dniccum\\PhoneNumber\\FieldServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}