composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "nette/utils",
  3. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4. "keywords": ["nette", "images", "json", "password", "validation", "utility", "string", "array", "core", "slugify", "utf-8", "unicode", "paginator", "datetime"],
  5. "homepage": "https://nette.org",
  6. "license": ["BSD-3-Clause", "GPL-2.0-only", "GPL-3.0-only"],
  7. "authors": [
  8. {
  9. "name": "David Grudl",
  10. "homepage": "https://davidgrudl.com"
  11. },
  12. {
  13. "name": "Nette Community",
  14. "homepage": "https://nette.org/contributors"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=7.2 <8.4"
  19. },
  20. "require-dev": {
  21. "nette/tester": "~2.0",
  22. "tracy/tracy": "^2.3",
  23. "phpstan/phpstan": "^1.0",
  24. "jetbrains/phpstorm-attributes": "dev-master"
  25. },
  26. "conflict": {
  27. "nette/di": "<3.0.6"
  28. },
  29. "suggest": {
  30. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  31. "ext-json": "to use Nette\\Utils\\Json",
  32. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  33. "ext-mbstring": "to use Strings::lower() etc...",
  34. "ext-xml": "to use Strings::length() etc. when mbstring is not available",
  35. "ext-gd": "to use Image",
  36. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  37. },
  38. "autoload": {
  39. "classmap": ["src/"]
  40. },
  41. "minimum-stability": "dev",
  42. "scripts": {
  43. "phpstan": "phpstan analyse",
  44. "tester": "tester tests -s"
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "3.2-dev"
  49. }
  50. }
  51. }