Package Data | |
---|---|
Maintainer Username: | lemesdaniel |
Maintainer Contact: | dlemes@gmail.com (Daniel Lemes) |
Package Create Date: | 2016-08-12 |
Package Last Update: | 2022-03-19 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-02-09 15:07:57 |
Package Statistics | |
---|---|
Total Downloads: | 90 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 6 |
Total Watchers: | 4 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Package is a simple service provider for Grafika library. A beautiful library will images
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
Next, add your new provider to the providers array of config/app.php:
'providers' => [
// Other service providers...
Lemesdaniel\Grafika\Providers\GrafikaServiceProvider::class,
],