1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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.6"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"milesj/emojibase": "5.0.1"
},
"repositories": [
{
"type": "package",
"package": {
"name": "milesj/emojibase",
"version": "5.0.1",
"source": {
"url": "https://github.com/milesj/emojibase",
"type": "git",
"reference": "tags/emojibase-data@5.0.1"
}
}
}
],
"autoload": {
"psr-4": {"LitEmoji\\":"src/"}
},
"scripts": {
"update-resources": [
"@php bin/generate-shortcodes-array.php"
]
}
}
|