aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/patrickschur/language-detection/composer.json
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2023-12-16 16:05:52 +0100
committerHarald Eilertsen <haraldei@anduin.net>2023-12-16 16:05:52 +0100
commit19dd1fe86605bc85e8a0bf4efd6f195db258f60a (patch)
tree5d5b1fac3ad1760189ea0daf1bf5639e4ba0d100 /vendor/patrickschur/language-detection/composer.json
parent6a5f78543fb2f5329e54209253b8c0d0f1d7a91d (diff)
parent69266cd6c65d228320dede32a343a9d3f3ea63df (diff)
downloadvolse-hubzilla-19dd1fe86605bc85e8a0bf4efd6f195db258f60a.tar.gz
volse-hubzilla-19dd1fe86605bc85e8a0bf4efd6f195db258f60a.tar.bz2
volse-hubzilla-19dd1fe86605bc85e8a0bf4efd6f195db258f60a.zip
Merge branch 'dev' into tests/test-db-setup-wip
Diffstat (limited to 'vendor/patrickschur/language-detection/composer.json')
-rw-r--r--vendor/patrickschur/language-detection/composer.json34
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"
+ }
+}