1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

Got image uploads working

This commit is contained in:
Dan Brown
2015-07-13 21:52:56 +01:00
parent 5d2243e2cc
commit 1ec9466c29
11 changed files with 329 additions and 6 deletions

View File

@ -137,6 +137,11 @@ return [
Illuminate\Validation\ValidationServiceProvider::class,
Illuminate\View\ViewServiceProvider::class,
/**
* Third Party
*/
Intervention\Image\ImageServiceProvider::class,
/*
* Application Service Providers...
*/
@ -192,6 +197,12 @@ return [
'Validator' => Illuminate\Support\Facades\Validator::class,
'View' => Illuminate\Support\Facades\View::class,
/**
* Third Party
*/
'ImageTool' => Intervention\Image\Facades\Image::class,
],
];