composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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", "GPL-3.0"],
  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": ">=5.6.0"
  19. },
  20. "require-dev": {
  21. "nette/tester": "~2.0",
  22. "tracy/tracy": "^2.3"
  23. },
  24. "suggest": {
  25. "ext-iconv": "to use Strings::webalize() and toAscii()",
  26. "ext-json": "to use Nette\\Utils\\Json",
  27. "ext-intl": "for script transliteration in Strings::webalize() and toAscii()",
  28. "ext-mbstring": "to use Strings::lower() etc...",
  29. "ext-xml": "to use Strings::length() etc. when mbstring is not available",
  30. "ext-gd": "to use Image"
  31. },
  32. "conflict": {
  33. "nette/nette": "<2.2"
  34. },
  35. "autoload": {
  36. "classmap": ["src/"],
  37. "files": ["src/loader.php"]
  38. },
  39. "minimum-stability": "dev",
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "2.5-dev"
  43. }
  44. }
  45. }