namest / drive
v0.1
2015-03-04 07:39 UTC
Requires
- illuminate/http: ~5.0
- illuminate/support: ~5.0
- intervention/image: ~2.1
- nesbot/carbon: ~1.9
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.5
This package is not auto-updated.
Last update: 2024-11-23 17:40:18 UTC
README
Provide an elegant way to interact with upload & process uploaded file feature.
Note: The package is only support Laravel 5
Installation
Step 1: Install package
composer require namest/drive
Step 2: Register service provider in your config/app.php
return [ ... 'providers' => [ ... 'Namest\Drive\DriveServiceProvider', ], ... ];
Step 3: Publish package configs. Open your terminal and type:
php artisan vendor:publish --provider="Namest\Drive\DriveServiceProvider"
Step 4: Edit your appropriate configurations in config/drive.php
:
Step 6: Read API below and start happy
API
Accept file upload (validate,...)
$file = Drive::accept($input_name);
Validation
// Set up validation rules in config file use laravel validation rules return [ ... 'rules' => [ 'max:2048', // Kilobytes // Whatever you want ], ... ];
Throws ValidationException
when failed validation.
Save file (without editing)
$nomal = $file->save(); $large = $file->save('-large'); // With file name suffix
Edit image file via method chaining
// Recipe: $file-><intervention/image method>($parameters) $small = $file->crop($width, $height, $x, $y) ->blur($percent) ->save('-small');
Edit image use profile declare in drive.profiles
config
$avatar = $file->profile('avatar')->save();
Auto edit file by profile for particular upload type
// For example: apply `avatar` profile with every uploaded images. // Edit in `drive` config return [ ... 'default_profiles' => [ 'image' => ['avatar'], 'video' => [], ], ... ];