Releases: pH-7/pH2Gravatar
Releases · pH-7/pH2Gravatar
v2.0.1 - (Apr 18th 2022 Release)
v2.0.0 - (Jan 7th 2022 Release) 🎨
- Several cleanup and better consistency for the library (following also unofficial PHP standards 💪).
- Breaking change: Redundant namespace has been remove from
PH7\PH2Gravatar\Gravatar\Image
toPH7\PH2Gravatar\Image
.- In your project, once you update the library to v2.0.0, you will just have to replace the full namespace
PH7\PH2Gravatar\Gravatar\Image
to bePH7\PH2Gravatar\Image
- In your project, once you update the library to v2.0.0, you will just have to replace the full namespace
Happy Gravatar! ✨ Happy New Year! 🎉
v1.1.2 - (Nov 19th 2021 Release) 🖼
- Trim email address.
- Update README file.
- Give a third example on how to use the library.
v1.1.0 - (Oct 25th 2021 Release)
- The library project namespace didn't have the right caps convention.
- Renamed the project namespace from
Ph7\PH2Gravatar
toPH7\PH2Gravatar
- Renamed the project namespace from
Gravatar Image, v1.0.1 - (Oct 24th 2021 Release)
Just minor changes in README
and composer.json
files.
Enjoy pH2Gravatar. Happy coding! 🤠
v1.0.0 - (Oct 24th 2021 Release)
Stable version 🎉
Now, with pH2Gravatar, you have the easiest way to generate gravatar images from registered gravatar email addresses 🥳
<?php
require __DIR__ . '/vendor/autoload.php';
use Ph7\PH2Gravatar\Gravatar\Image;
?>
<img src="<?php echo Image::get('hi@ph7.me'); ?>" alt="My gravatar image" />