composer.json 772 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "filp/whoops",
  3. "license": "MIT",
  4. "description": "php error handling for cool kids",
  5. "keywords": ["library", "error", "handling", "exception", "silex-provider", "whoops", "zf2"],
  6. "homepage": "https://github.com/filp/whoops",
  7. "authors": [
  8. {
  9. "name": "Filipe Dobreira",
  10. "homepage": "https://github.com/filp",
  11. "role": "Developer"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.3.0"
  16. },
  17. "require-dev": {
  18. "mockery/mockery": "0.9.*"
  19. },
  20. "autoload": {
  21. "psr-0": {
  22. "Whoops": "src/"
  23. },
  24. "classmap": [
  25. "src/deprecated"
  26. ]
  27. },
  28. "extra": {
  29. "branch-alias": {
  30. "dev-master": "1.2-dev"
  31. }
  32. }
  33. }