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.

45 lines
1.2 KiB

3 years ago
  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. "test": "phpunit --testdox tests"
  16. },
  17. "require": {
  18. "php": "^5.5.9 || ^7.0 || ^8.0",
  19. "psr/log": "^1.0.1"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  23. "mockery/mockery": "^0.9 || ^1.0",
  24. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  25. },
  26. "suggest": {
  27. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  28. "whoops/soap": "Formats errors as SOAP responses"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Whoops\\": "src/Whoops/"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "Whoops\\": "tests/Whoops/"
  38. }
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "2.7-dev"
  43. }
  44. }
  45. }