Merge pull request #12 from jawira/9-emoji-sequences

Explain emoji sequences in readme
This commit is contained in:
Jawira Portugal 2020-09-18 13:35:25 +02:00 committed by GitHub
commit ae2893551f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -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
------------