-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
46 lines (46 loc) · 852 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
38
39
40
41
42
43
44
45
46
{
"name": "jawira/emoji-catalog",
"description": "Get access to +3700 emojis as class constants",
"license": "MIT",
"type": "library",
"keywords": [
"emoji",
"emojis",
"emoticons",
"smileys",
"smilies",
"unicode",
"catalog"
],
"authors": [
{
"name": "Jawira Portugal",
"homepage": "https://jawira.com/"
}
],
"require-dev": {
"php": "^7.3 || ^8.0",
"ext-intl": "*",
"ext-mbstring": "*",
"jawira/skeleton": "^2.16",
"phing/phing": "^2.17 || ^3"
},
"autoload": {
"psr-4": {
"Jawira\\EmojiCatalog\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jawira\\EmojiTask\\": "tasks"
},
"files": [
"tests/vanilla.php"
]
},
"config": {
"platform-check": true,
"preferred-install": "dist",
"sort-packages": true
}
}