Download the PHP package invinbg/laravel-upload-image without Composer
On this page you can find all versions of the php package invinbg/laravel-upload-image. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download invinbg/laravel-upload-image
More information about invinbg/laravel-upload-image
Files in invinbg/laravel-upload-image
Download invinbg/laravel-upload-image
More information about invinbg/laravel-upload-image
Files in invinbg/laravel-upload-image
Vendor invinbg
Package laravel-upload-image
Short Description Laravel Upload Image
License MIT
Homepage https://github.com/invinbg/laravel-upload-image
Package laravel-upload-image
Short Description Laravel Upload Image
License MIT
Homepage https://github.com/invinbg/laravel-upload-image
Please rate this library. Is it a good library?
Informations about the package laravel-upload-image
laravel-upload-image
Installation
You can install this package quickly and easily with Composer.
Require the package via Composer:
$ composer require invinbg/laravel-upload-image
Finally publish the config file:
$ php artisan vendor:publish --provider="InviNBG\UploadImage\UploadImageServiceProvider"
Laravel Integration
The Image Cache class supports Laravel integration. Best practice to use the library in Laravel is to add the ServiceProvider and Facade of the Intervention Image Class.
Open your Laravel config file config/app.php
and add the following lines.
In the $providers
array add the service providers for this package.
'providers' => array(
[...]
'Intervention\Image\ImageServiceProvider'
),
Add the facade of this package to the $aliases
array.
'aliases' => array(
[...]
'Image' => 'Intervention\Image\Facades\Image'
),
All versions of laravel-upload-image with dependencies
PHP Build Version
Package Version
The package invinbg/laravel-upload-image contains the following files
Loading the files please wait ....