-
Notifications
You must be signed in to change notification settings - Fork 80
Installation
David Mongeau-Petitpas edited this page Jan 26, 2014
·
3 revisions
1- Require the package via Composer in your composer.json
.
{
"require": {
"folklore/image": "dev-master"
}
}
2- Run Composer to install or update the new requirement.
$ composer install
or
$ composer update
3- Add the service provider to your app/config/app.php
file
'Folklore\Image\ImageServiceProvider',
4- Add the facade to your app/config/app.php
file
'Image' => 'Folklore\Image\Facades\Image',
5- Publish the configuration file
$ php artisan config:publish folklore/laravel-image