-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 914 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
{
"name": "huo-zi/laravel-admin-ext-daterangepicker",
"description": "laravel-admin extension daterangepicker",
"type": "library",
"keywords": ["laravel-admin", "extension", "daterangepicker"],
"homepage": "https://github.com/huo-zi/laravel-admin-ext-daterangepicker",
"license": "MIT",
"authors": [
{
"name": "huozi",
"email": "[email protected]",
"homepage": "https://huozi1024.github.io"
}
],
"require": {
"php": ">=7.0.0",
"encore/laravel-admin": "~1.6"
},
"require-dev": {
"phpunit/phpunit": "~6.0"
},
"autoload": {
"psr-4": {
"Huozi\\Admin\\DateRangePicker\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Huozi\\Admin\\DateRangePicker\\DateRangePickerServiceProvider"
]
}
}
}