Skip to content

Commit 40af7dd

Browse files
committed
install "intervention/image" composer package to manipulate images
1 parent 059a77e commit 40af7dd

File tree

3 files changed

+78
-1
lines changed

3 files changed

+78
-1
lines changed

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"fideloper/proxy": "^4.4",
1313
"fruitcake/laravel-cors": "^2.0",
1414
"guzzlehttp/guzzle": "^7.0.1",
15+
"intervention/image": "^2.5",
1516
"laravel/framework": "^8.12",
1617
"laravel/tinker": "^2.5",
1718
"league/color-extractor": "0.3.*"

composer.lock

+75-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/app.php

+2
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@
165165
/*
166166
* Package Service Providers...
167167
*/
168+
Intervention\Image\ImageServiceProvider::class,
168169

169170
/*
170171
* Application Service Providers...
@@ -226,6 +227,7 @@
226227
'URL' => Illuminate\Support\Facades\URL::class,
227228
'Validator' => Illuminate\Support\Facades\Validator::class,
228229
'View' => Illuminate\Support\Facades\View::class,
230+
'Image' => Intervention\Image\Facades\Image::class,
229231

230232
],
231233

0 commit comments

Comments
 (0)