composer.json 1019 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "nette/schema",
  3. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4. "keywords": ["nette", "config"],
  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": "8.1 - 8.5",
  19. "nette/utils": "^4.0"
  20. },
  21. "require-dev": {
  22. "nette/tester": "^2.6",
  23. "tracy/tracy": "^2.8",
  24. "phpstan/phpstan": "^2.1.39@stable",
  25. "phpstan/extension-installer": "^1.4@stable",
  26. "nette/phpstan-rules": "^1.0"
  27. },
  28. "autoload": {
  29. "classmap": ["src/"],
  30. "psr-4": {
  31. "Nette\\": "src"
  32. }
  33. },
  34. "minimum-stability": "dev",
  35. "scripts": {
  36. "phpstan": "phpstan analyse",
  37. "tester": "tester tests -s"
  38. },
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "1.3-dev"
  42. }
  43. },
  44. "config": {
  45. "allow-plugins": {
  46. "phpstan/extension-installer": true
  47. }
  48. }
  49. }