lemesdaniel / grafika-laravel
v0.0.2
2018-09-09 02:32 UTC
Requires
- illuminate/support: 5.4.*|5.5.*|5.6.*|5.7.*
- kosinix/grafika: ^1.4
This package is auto-updated.
Last update: 2024-12-20 02:29:38 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 lemesdaniel/grafika-laravel.
"require": { "lemesdaniel/grafika-laravel": "dev-master" } Next, update Composer from the Terminal:
composer update
OR in bash
$ composer require lemesdaniel/grafika-laravel
2 - Provider
Next, add your new provider to the providers array of config/app.php:
'providers' => [
// Other service providers...
Lemesdaniel\Grafika\Providers\GrafikaServiceProvider::class,
],