-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 972 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
{
"name": "matecat/emoji-to-entity-converter",
"type": "library",
"description": "Matecat Emoji To Entity converter component",
"keywords": ["emoji", "xml", "php"],
"homepage": "https://github.com/matecat/emoji-to-entity-converter",
"license": "MIT",
"support": {
"issues": "https://github.com/matecat/emoji-to-entity-converter/issues"
},
"authors": [
{
"name": "Mauro Cassani",
"email": "[email protected]",
"homepage": "https://github.com/mauretto78"
},
{
"name": "Domenico Lupinetti",
"email": "[email protected]",
"homepage": "https://github.com/ostico"
}
],
"autoload": {
"psr-4": {
"Matecat\\EmojiParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "Matecat\\EmojiParser\\Tests\\": "tests/" }
},
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7.27",
"fzaninotto/faker": "^1.9",
"symfony/console": "^5.4"
}
}