-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 900 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 900 Bytes
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
{
"name": "steppinghat/emoji-detector",
"description": "Detect and validate emoji in an input string",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/steppinghat/emoji-detector",
"authors": [
{
"name": "Javan Eskander",
"homepage": "https://javaneskander.com"
}
],
"autoload": {
"psr-4": {
"SteppingHat\\EmojiDetector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SteppingHat\\EmojiDetector\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"symfony/var-dumper": "^5.4"
},
"scripts": {
"generate-map": "SteppingHat\\EmojiDetector\\MapGenerator::generateMap",
"test": "phpunit"
},
"config": {
"platform": {
"php": "8.1.33"
}
}
}