forked from techouse/intl-date-time
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 947 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
42
43
44
{
"name": "techouse/intl-date-time",
"description": "International datepicker field for Laravel Nova.",
"keywords": [
"laravel",
"laravel-nova",
"nova",
"field",
"datepicker",
"date",
"picker",
"international",
"localisation"
],
"authors": [
{
"name": "Klemen Tušar",
"email": "techouse@gmail.com"
}
],
"license": "MIT",
"require": {
"php": ">=7.1.0",
"illuminate/support": "^5.6",
"laravel/nova": "*"
},
"autoload": {
"psr-4": {
"Techouse\\IntlDateTime\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Techouse\\IntlDateTime\\FieldServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}