34 lines
809 B
JSON
34 lines
809 B
JSON
{
|
|
"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": "patrick_schur@outlook.de"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"LanguageDetection\\": "src/LanguageDetection"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"LanguageDetection\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^7.3 || ^8.0",
|
|
"ext-mbstring": "*",
|
|
"ext-json": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.5.0"
|
|
}
|
|
}
|