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.

composer.json 962B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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": ">=4.4.0"
  22. },
  23. "autoload": {
  24. "psr-0": {
  25. "PEAR": ""
  26. }
  27. },
  28. "extra": {
  29. "branch-alias": {
  30. "dev-master": "1.0.x-dev"
  31. }
  32. },
  33. "include-path": [
  34. "."
  35. ],
  36. "support": {
  37. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  38. "source": "https://github.com/pear/PEAR_Exception"
  39. },
  40. "require-dev": {
  41. "phpunit/phpunit": "*"
  42. }
  43. }