uawdijnntqw1x1x1
IP : 216.73.216.46
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
elvanto
/
litemoji
/
README.md
/
/
# LitEmoji 🔥 A PHP library simplifying the conversion of unicode, HTML and shortcode emoji.  ## Installation ``` $ composer require elvanto/litemoji ``` Alternatively you can clone or download the library files. ## Usage ```php use LitEmoji\LitEmoji; echo LitEmoji::encodeShortcode('Baby you light my 🔥! 😃'); // 'Baby you light my :fire:! :smiley:' echo LitEmoji::encodeHtml('Baby you light my :fire:! :smiley:'); // 'Baby you light my 🔥! 😃' echo LitEmoji::encodeUnicode('Baby you light my :fire:! :smiley:'); // 'Baby you light my 🔥! 😃' echo LitEmoji::removeEmoji('Baby you light my 🔥! 😃!!!'); // 'Baby you light my ! !!!' ``` # Configuration ```php use LitEmoji\LitEmoji; // Exclude specific shortcodes when converting from unicode and HTML entities LitEmoji::config('excludeShortcodes', ['mobile', 'android']); echo LitEmoji::encodeShortcode('📱'); // ':iphone:' ``` ## Contributing Pull requests are welcome. New code must be fully unit tested (the existing test suite can be run with PHPUnit). ## License [MIT License](LICENSE)
/srv/users/craft4/apps/craft4-newsite-space/vendor/elvanto/litemoji/README.md