Skip to content

Releases: pH-7/pH2Gravatar

v2.0.1 - (Apr 18th 2022 Release)

18 Apr 08:19
d6065fe
Compare
Choose a tag to compare
  • Minor cleanup/enhancements 🚀

v2.0.0 - (Jan 7th 2022 Release) 🎨

07 Jan 08:11
Compare
Choose a tag to compare
  • 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 to PH7\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 be PH7\PH2Gravatar\Image

Happy Gravatar! ✨ Happy New Year! 🎉

v1.1.2 - (Nov 19th 2021 Release) 🖼

18 Nov 22:25
Compare
Choose a tag to compare
  • Trim email address.
  • Update README file.
    • Give a third example on how to use the library.

v1.1.0 - (Oct 25th 2021 Release)

24 Oct 21:21
Compare
Choose a tag to compare
  • The library project namespace didn't have the right caps convention.
    • Renamed the project namespace from Ph7\PH2Gravatar to PH7\PH2Gravatar

Gravatar Image, v1.0.1 - (Oct 24th 2021 Release)

24 Oct 09:55
Compare
Choose a tag to compare

Just minor changes in README and composer.json files.

Enjoy pH2Gravatar. Happy coding! 🤠

v1.0.0 - (Oct 24th 2021 Release)

24 Oct 09:29
Compare
Choose a tag to compare

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('[email protected]'); ?>" alt="My gravatar image" />