composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "filp/whoops",
  3. "license": "MIT",
  4. "description": "php error handling for cool kids",
  5. "keywords": ["library", "error", "handling", "exception", "whoops", "throwable"],
  6. "homepage": "https://filp.github.io/whoops/",
  7. "authors": [
  8. {
  9. "name": "Filipe Dobreira",
  10. "homepage": "https://github.com/filp",
  11. "role": "Developer"
  12. }
  13. ],
  14. "scripts": {
  15. "demo": "php -S localhost:8000 ./examples/example.php",
  16. "test": "phpunit --testdox tests"
  17. },
  18. "require": {
  19. "php": "^7.1 || ^8.0",
  20. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  24. "mockery/mockery": "^1.0",
  25. "symfony/var-dumper": "^4.0 || ^5.0"
  26. },
  27. "suggest": {
  28. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  29. "whoops/soap": "Formats errors as SOAP responses"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Whoops\\": "src/Whoops/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "Whoops\\": "tests/Whoops/"
  39. }
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "2.7-dev"
  44. }
  45. }
  46. }