You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.5 KiB

3 years ago
  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.1"
  19. },
  20. "require-dev": {
  21. "nette/tester": "~2.0",
  22. "tracy/tracy": "^2.3",
  23. "phpstan/phpstan": "^0.12"
  24. },
  25. "conflict": {
  26. "nette/di": "<3.0.6"
  27. },
  28. "suggest": {
  29. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  30. "ext-json": "to use Nette\\Utils\\Json",
  31. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  32. "ext-mbstring": "to use Strings::lower() etc...",
  33. "ext-xml": "to use Strings::length() etc. when mbstring is not available",
  34. "ext-gd": "to use Image",
  35. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  36. },
  37. "autoload": {
  38. "classmap": ["src/"]
  39. },
  40. "minimum-stability": "dev",
  41. "scripts": {
  42. "phpstan": "phpstan analyse",
  43. "tester": "tester tests -s"
  44. },
  45. "extra": {
  46. "branch-alias": {
  47. "dev-master": "3.2-dev"
  48. }
  49. }
  50. }