Stars: 236
Forks: 8
Pull Requests: 11
Issues: 10
Watchers: 7
Last Updated: 2022-11-09 21:23:02
Get access to +3600 emojis as class constants
License: MIT License
Languages: PHP
Get access to +3600 emojis as class constants.
Features:
You can see the full emoji list.
You have access to emojis as \Jawira\EmojiCatalog\Emoji
constants:
<?php
use Jawira\EmojiCatalog\Emoji;
echo Emoji::GRINNING_FACE; // 😀
echo Emoji::SOCCER_BALL; // ⚽
echo Emoji::HOURGLASS_DONE; // ⌛
echo Emoji::EJECT_BUTTON; // ⏏
Your favorite IDE should give you autocomplete since you are simply calling class constants:
$ composer require jawira/emoji-catalog
An emoji sequence is an emoji composed of other emojis. For example the character "👨👩👧" is composed of five characters: U+1F468 U+200D U+1F469 U+200D U+1F467.
You don't need to compose your emojis, jawira/emoji-catalog comes with all possible sequences as class constants:
echo Emoji::FAMILY_MAN_WOMAN_GIRL; // 👨👩👧
This library is licensed under the MIT license.