irazasyed / laravel-identicon
Laravel Identicon Package
Installs: 28 648
Dependents: 1
Suggesters: 0
Security: 0
Stars: 22
Watchers: 4
Forks: 7
Open Issues: 0
Requires
- php: ^7.2
- illuminate/support: ^6.0 || ^7.0 || ^8.0
- yzalis/identicon: ^2.0
README
Laravel Identicon Package - Extends Identicon Library and Adds Support for Seamless Usage with Laravel.
Quick start
Installation
$ composer require irazasyed/laravel-identicon
Usage
This Package adds Laravel Support to Identicon PHP Library. It simply extends the library as well as optimized for usage with Laravel. So all the methods listed here are available and will work seamlessly.
Example Methods
Generate and Display an identicon image:
Identicon::displayImage('foo');
Generate and get the image data
$imageData = Identicon::getImageData('bar');
Generate and get the base 64 image uri ready for integrate into an HTML img tag. The below example is using blade templating
<img src="{{ Identicon::getImageDataUri('bar') }}" alt="bar Identicon" />
...
And all the other remaining methods from the main library.
Contributing
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
Security
If you discover any security related issues, please email syed at lukonet.com
instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.