composer.json 941 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "pear/pear_exception",
  3. "description": "The PEAR Exception base class.",
  4. "type": "class",
  5. "keywords": [
  6. "exception"
  7. ],
  8. "homepage": "https://github.com/pear/PEAR_Exception",
  9. "license": "BSD-2-Clause",
  10. "authors": [
  11. {
  12. "name": "Helgi Thormar",
  13. "email": "dufuz@php.net"
  14. },
  15. {
  16. "name": "Greg Beaver",
  17. "email": "cellog@php.net"
  18. }
  19. ],
  20. "require": {
  21. "php": ">=5.2.0"
  22. },
  23. "autoload": {
  24. "classmap": ["PEAR/"]
  25. },
  26. "extra": {
  27. "branch-alias": {
  28. "dev-master": "1.0.x-dev"
  29. }
  30. },
  31. "include-path": [
  32. "."
  33. ],
  34. "support": {
  35. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  36. "source": "https://github.com/pear/PEAR_Exception"
  37. },
  38. "require-dev": {
  39. "phpunit/phpunit": "<9"
  40. }
  41. }