-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
37 lines (37 loc) · 987 Bytes
/
composer.json
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
37
{
"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": ">=7.4",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"milesj/emojibase": "15.3.*"
},
"repositories": [
{
"type": "package",
"package": {
"name": "milesj/emojibase",
"version": "15.3.0",
"source": {
"url": "https://github.com/milesj/emojibase",
"type": "git",
"reference": "tags/[email protected]"
}
}
}
],
"autoload": {
"psr-4": {"LitEmoji\\":"src/"}
},
"scripts": {
"update-resources": [
"@php bin/generate-shortcodes-array.php"
]
}
}