composer.json 681 B

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