composer.json 856 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "phrity/util-errorhandler",
  3. "type": "library",
  4. "description": "Inline error handler; catch and resolve errors for code block.",
  5. "homepage": "https://phrity.sirn.se/util-errorhandler",
  6. "keywords": ["error", "warning"],
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Sören Jensen",
  11. "email": "sirn@sirn.se",
  12. "homepage": "https://phrity.sirn.se"
  13. }
  14. ],
  15. "autoload": {
  16. "psr-4": {
  17. "Phrity\\Util\\": "src/"
  18. }
  19. },
  20. "autoload-dev": {
  21. "psr-4": {
  22. "Phrity\\Util\\Tests\\": "tests/"
  23. }
  24. },
  25. "require": {
  26. "php": "^7.4 | ^8.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^9.0 | ^10.0 | ^11.0",
  30. "php-coveralls/php-coveralls": "^2.0",
  31. "squizlabs/php_codesniffer": "^3.5"
  32. }
  33. }