| .. | ||
| .gitignore | ||
| composer.json | ||
| Gravatar.php | ||
| LICENSE | ||
| README.md | ||
yii2-gravatar
Gravatar Widget for Yii Framework 2
How to install?
Get it via composer by adding the package to your composer.json:
{
"require": {
"cebe/yii2-gravatar": "1.0"
}
}
You may also check the package information on packagist.
Usage
<?php echo \cebe\gravatar\Gravatar::widget([
'email' => 'mail@cebe.cc',
'options' => [
'alt' => 'Carsten Brandt'
],
'size' => 32
]); ?>