composer.json 801 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "patrickschur/language-detection",
  3. "type": "library",
  4. "description": "A language detection library for PHP. Detects the language from a given text string.",
  5. "keywords": ["language", "detection", "detect"],
  6. "homepage": "https://github.com/patrickschur/language-detection",
  7. "license": "MIT",
  8. "minimum-stability": "stable",
  9. "prefer-stable": true,
  10. "authors": [
  11. {
  12. "name": "Patrick Schur",
  13. "email": "patrick_schur@outlook.de"
  14. }
  15. ],
  16. "autoload": {
  17. "psr-4": {
  18. "LanguageDetection\\": "src/LanguageDetection"
  19. }
  20. },
  21. "autoload-dev": {
  22. "psr-4": {
  23. "LanguageDetection\\Tests\\": "tests"
  24. }
  25. },
  26. "require": {
  27. "php": "^7.2",
  28. "ext-mbstring": "*",
  29. "ext-json": "*"
  30. },
  31. "require-dev": {
  32. "phpunit/phpunit": "^8.4.3"
  33. }
  34. }