Download the PHP package duguncom/uploadbundle without Composer
On this page you can find all versions of the php package duguncom/uploadbundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download duguncom/uploadbundle
More information about duguncom/uploadbundle
Files in duguncom/uploadbundle
Download duguncom/uploadbundle
More information about duguncom/uploadbundle
Files in duguncom/uploadbundle
Vendor duguncom
Package uploadbundle
Short Description A upload bundle for duguncom and anneysencom
License MIT
Package uploadbundle
Short Description A upload bundle for duguncom and anneysencom
License MIT
Keywords upload bundle
Please rate this library. Is it a good library?
Informations about the package uploadbundle
Installation
1: Download the Bundle
You can add duguncom/uploadbundle to your requirements with dev-master
"duguncom/uploadbundle": "~2.0",
or you can directly run:
composer require duguncom/uploadbundle
2: Enable Bundle
Add bundle to your registered bundles list in the app/AppKernel.php
:
3: Configuration
Add our needed configuration parameters to your app/config/config.yml
4: Usage
You can use upload_service on your controllers by getting from container or you can pass service to your other services.
Service naming: dugun_upload.service.dugun_upload
Uploading File
$file = 'It can be path of a file';
$file = 'OR It can be UploadedFile instance';
$file = 'OR It can be \Intervention\Image\Image instance';
$destinationPath = '/uploaded/folder/filename.jpg';
$result = $this->uploadService->upload($file, $destinationPath);
//If file uploaded successfully, $result['success'] returns as (boolean)true
//And if its true, it returns $result['file_url'] that you can access your file
All versions of uploadbundle with dependencies
PHP Build Version
Package Version
Requires
php Version
^7.1.3
symfony/http-kernel Version ~4.0
guzzlehttp/guzzle Version ~6.1
aws/aws-sdk-php-symfony Version ~2.0
symfony/http-kernel Version ~4.0
guzzlehttp/guzzle Version ~6.1
aws/aws-sdk-php-symfony Version ~2.0
The package duguncom/uploadbundle contains the following files
Loading the files please wait ....