diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..ef06992 --- /dev/null +++ b/composer.json @@ -0,0 +1,36 @@ +{ + "name": "elvanto/litemoji", + "description": "A PHP library simplifying the conversion of unicode, HTML and shortcode emoji.", + "type": "library", + "keywords": ["php-emoji", "emoji"], + "license": "MIT", + "require": { + "php": ">=5.4" + }, + "require-dev": { + "phpunit/phpunit": "^5.0", + "milesj/emojibase": "3.1.0" + }, + "repositories": [ + { + "type": "package", + "package": { + "name": "milesj/emojibase", + "version": "3.1.0", + "source": { + "url": "https://github.com/milesj/emojibase", + "type": "git", + "reference": "tags/emojibase-data@3.1.0" + } + } + } + ], + "autoload": { + "psr-4": {"LitEmoji\\":"src/"} + }, + "scripts": { + "update-resources": [ + "@php bin/generate-shortcodes-array.php" + ] + } +} |