composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "spatie/backtrace",
  3. "description": "A better backtrace",
  4. "keywords": [
  5. "spatie",
  6. "backtrace"
  7. ],
  8. "homepage": "https://github.com/spatie/backtrace",
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "Freek Van de Herten",
  13. "email": "freek@spatie.be",
  14. "homepage": "https://spatie.be",
  15. "role": "Developer"
  16. }
  17. ],
  18. "require": {
  19. "php": "^7.3|^8.0"
  20. },
  21. "require-dev": {
  22. "ext-json": "*",
  23. "phpunit/phpunit": "^9.3",
  24. "symfony/var-dumper": "^5.1"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Spatie\\Backtrace\\": "src"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "Spatie\\Backtrace\\Tests\\": "tests"
  34. }
  35. },
  36. "scripts": {
  37. "psalm": "vendor/bin/psalm",
  38. "test": "vendor/bin/phpunit",
  39. "test-coverage": "vendor/bin/phpunit --coverage-html coverage",
  40. "format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
  41. },
  42. "config": {
  43. "sort-packages": true
  44. },
  45. "minimum-stability": "dev",
  46. "prefer-stable": true,
  47. "funding": [
  48. {
  49. "type": "github",
  50. "url": "https://github.com/sponsors/spatie"
  51. },
  52. {
  53. "type": "other",
  54. "url": "https://spatie.be/open-source/support-us"
  55. }
  56. ]
  57. }