bandev / picker
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:lumen
Requires
- intervention/image: ^2.4
- league/flysystem-aws-s3-v3: ^1.0
This package is not auto-updated.
Last update: 2025-03-30 06:55:24 UTC
README
Picker is responsible for cutting and sending images to storage
Lumen Installation
composer require bandev/picker
$ cp vendor/bandev/picker/src/config/picker.php config/
bootstrap/app.php uncomment the line:
//$app->withFacades();
below add the line:
$app->configure('picker');
and this:
if (!class_exists('Picker')) { class_alias('Bandev\Picker\Facades\Picker', 'Picker'); }
and register the service provider:
$app->register(Bandev\Picker\PickerServiceProvider::class);
add facade in controller:
use Picker;
$imageUrl = Picker::sendImage($request->image, $format = 'avatar', $resource = 'user', $resourceId = 1);