From 34960927ddf3af81b6edb543ecbd5ce09ba71a59 Mon Sep 17 00:00:00 2001 From: jawira Date: Fri, 18 Sep 2020 12:46:44 +0200 Subject: [PATCH] Emoji sequences #9 --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 711387f..365a610 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,20 @@ How to install $ composer require jawira/emoji-catalog ``` +Emoji sequences +--------------- + +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: + +```php +echo Emoji::FAMILY_MAN_WOMAN_GIRL; // 👨‍👩‍👧 +``` + Contributing ------------