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.

39 lines
835 B

3 years ago
  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": ">=7.1 <8.1",
  19. "nette/utils": "^3.1.4 || ^4.0"
  20. },
  21. "require-dev": {
  22. "nette/tester": "^2.3 || ^2.4",
  23. "tracy/tracy": "^2.7",
  24. "phpstan/phpstan-nette": "^0.12"
  25. },
  26. "autoload": {
  27. "classmap": ["src/"]
  28. },
  29. "minimum-stability": "dev",
  30. "scripts": {
  31. "phpstan": "phpstan analyse",
  32. "tester": "tester tests -s"
  33. },
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "1.2-dev"
  37. }
  38. }
  39. }