-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
executable file
·36 lines (36 loc) · 965 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
{
"name": "kassie/calendar",
"description": "Calendar plugin for SeAT.",
"type": "seat-plugin",
"autoload": {
"psr-4": {
"Seat\\Kassie\\Calendar\\": "src/",
"Seat\\Kassie\\Calendar\\database\\seeds\\": "src/database/seeds/"
}
},
"require": {
"eveseat/web": "^4.0",
"eveseat/eveapi": "^4.0",
"eveseat/notifications": "^4.0",
"eveseat/services": "^4.0",
"eveseat/eseye": "^2.1",
"s9e/text-formatter": "^2.4"
},
"authors": [{
"name": "Kassie Yvo",
"email": "[email protected]"
}, {
"name": "Warlof Tutsimo",
"email": "[email protected]"
}],
"license": "GPL-3.0-or-later",
"minimum-stability": "alpha",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Seat\\Kassie\\Calendar\\CalendarServiceProvider"
]
}
}
}