hoga / laravel-grafika
dev-master
2020-07-17 09:34 UTC
Requires
- kosinix/grafika: ^2.0
This package is auto-updated.
Last update: 2025-03-17 20:03:00 UTC
README
Package is a simple service provider for Grafika library. A beautiful library will images
Install
Begin by installing this package through Composer. Edit your project's composer.json file to require harryhoga/laravel-grafika.
"require": { "hoga/laravel-grafika": "dev-master" } Next, update Composer from the Terminal:
composer update
OR in bash
$ composer require hoga/laravel-grafika --prefer-dist
2 - Provider
Next, add your new provider to the providers array of config/app.php:
'providers' => [
// Other service providers...
Hoga\Grafika\Providers\GrafikaServiceProvider::class,
],