-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
41 lines (41 loc) · 860 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
{
"name": "nitotm/efficient-language-detector",
"type": "library",
"description": "Fast and accurate natural language detection. Detector written in PHP. Nito-ELD, ELD.",
"keywords": [
"language",
"detection",
"detector",
"language detector",
"language detection",
"language identification",
"language recognition",
"language classification"
],
"homepage": "https://github.com/nitotm/efficient-language-detector",
"license": "Apache-2.0",
"authors": [
{
"name": "Nito T.M.",
"homepage": "https://github.com/nitotm"
}
],
"autoload": {
"psr-4": {
"Nitotm\\Eld\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nitotm\\Eld\\Tests\\": "tests"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-mbstring": "*"
},
"require-dev": {
},
"scripts": {
}
}