blob: 8a2d95d199d5652cb1ca8ba70db10cc660aa0bbd (
plain) (
tree)
|
|
{
"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.4 || ^8.0",
"ext-mbstring": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.0"
}
}
|