composer.json 1.5 KB

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