-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·41 lines (40 loc) · 1022 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": "msppack/outlook-calendar",
"keywords": ["Calendar"],
"description": "calendar",
"authors": [
{
"name": "Manoj Sonagra",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0"
},
"autoload": {
"psr-4": {
"MspPack\\OutLookCalendar\\": "src"
}
},
"scripts": {
"post-create-project-cmd": [
"php artisan migrate",
"php artisan vendor:publish"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan optimize"
]
},
"extra": {
"laravel": {
"providers": [
"MspPack\\OutLookCalendar\\OutLookCalendarServiceProvider"
]
}
}
}