diff options
author | Mario <mario@mariovavti.com> | 2023-10-07 16:00:34 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-10-07 16:00:34 +0000 |
commit | 2f2e353ecef52639a78cac3bc407ccfe64197ac9 (patch) | |
tree | 557793121ec08dce6e97c064a100994e8d3990c5 /vendor/patrickschur/language-detection/composer.json | |
parent | 0092b7c0a4d6cf49c092e2232af63f87be63142b (diff) | |
download | volse-hubzilla-2f2e353ecef52639a78cac3bc407ccfe64197ac9.tar.gz volse-hubzilla-2f2e353ecef52639a78cac3bc407ccfe64197ac9.tar.bz2 volse-hubzilla-2f2e353ecef52639a78cac3bc407ccfe64197ac9.zip |
use new lang detect library which supports much more languages
Diffstat (limited to 'vendor/patrickschur/language-detection/composer.json')
-rw-r--r-- | vendor/patrickschur/language-detection/composer.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/vendor/patrickschur/language-detection/composer.json b/vendor/patrickschur/language-detection/composer.json new file mode 100644 index 000000000..8a2d95d19 --- /dev/null +++ b/vendor/patrickschur/language-detection/composer.json @@ -0,0 +1,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": "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" + } +} |