aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/patrickschur/language-detection/composer.json
blob: 8a2d95d199d5652cb1ca8ba70db10cc660aa0bbd (plain) (blame)
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": "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"
  }
}