-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathcomposer.json
45 lines (45 loc) · 1.42 KB
/
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
45
{
"name": "qlick/laravel-full-calendar",
"description": "Laravel helper for FullCalendar.io. Fork of https://github.com/maddhatter/laravel-fullcalendar",
"authors": [
{
"name": "Qlick by Nermin Elkasovic",
"email": "[email protected]",
"homepage": "https://qlick.ch",
"role": "Developer"
}
],
"require": {
"php": "^7.1|^8.0",
"illuminate/database": "^7.0|^8.0",
"illuminate/support": "^7.0|^8.0",
"laravel/helpers": "^1.0"
},
"license": "MIT",
"homepage": "https://github.com/nelkasovic/laravel-full-calendar",
"support": {
"email": "[email protected]",
"issues": "https://github.com/nelkasovic/laravel-full-calendar/issues",
"wiki": "https://github.com/nelkasovic/laravel-full-calendar/wiki",
"source": "https://github.com/nelkasovic/laravel-full-calendar",
"docs": "https://github.com/nelkasovic/laravel-full-calendar"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"LaravelFullCalendar\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelFullCalendar\\FullCalendarServiceProvider"
],
"aliases": {
"Calendar": "LaravelFullCalendar\\Facades\\Calendar"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}