-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 715 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 715 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
{
"name": "landrok/language-detector",
"type": "library",
"version": "1.4.0",
"description": "A fast and reliable PHP library for detecting languages",
"keywords": ["language", "detector", "n-grams"],
"homepage": "https://github.com/landrok/language-detector",
"license": "MIT",
"require": {
"php": ">=7.4",
"ext-mbstring": "*",
"webmozart/assert": "^1.2"
},
"require-dev": {
"phpunit/phpunit": ">=6"
},
"autoload": {
"psr-4": {
"LanguageDetector\\": "src/LanguageDetector/"
}
},
"autoload-dev": {
"psr-4": {
"LanguageDetectorTest\\": "tests/LanguageDetector/"
}
}
}