forked from patrickschur/language-detection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 795 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
{
"name": "patrickschur/language-detection",
"type": "library",
"description": "A language detection library for PHP. Detects the language from a given text string.",
"keywords": ["language", "detection", "detect"],
"homepage": "https://github.com/patrickschur/language-detection",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Patrick Schur",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"LanguageDetection\\": "src/LanguageDetection"
}
},
"autoload-dev": {
"psr-4": {
"LanguageDetection\\Tests\\": "tests"
}
},
"require": {
"php": "^7",
"ext-mbstring": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^6"
}
}