composer.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "spatie/flare-client-php",
  3. "description": "Send PHP errors to Flare",
  4. "keywords": [
  5. "spatie",
  6. "flare",
  7. "exception",
  8. "reporting"
  9. ],
  10. "homepage": "https://github.com/spatie/flare-client-php",
  11. "license": "MIT",
  12. "require": {
  13. "php": "^8.0",
  14. "illuminate/pipeline": "^8.0|^9.0",
  15. "spatie/backtrace": "^1.2",
  16. "symfony/http-foundation": "^5.0|^6.0",
  17. "symfony/mime": "^5.2|^6.0",
  18. "symfony/process": "^5.2|^6.0",
  19. "symfony/var-dumper": "^5.2|^6.0"
  20. },
  21. "require-dev": {
  22. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  23. "phpstan/extension-installer": "^1.1",
  24. "phpstan/phpstan-deprecation-rules": "^1.0",
  25. "phpstan/phpstan-phpunit": "^1.0",
  26. "spatie/phpunit-snapshot-assertions": "^4.0",
  27. "pestphp/pest": "^1.20"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Spatie\\FlareClient\\": "src"
  32. },
  33. "files": [
  34. "src/helpers.php"
  35. ]
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "Spatie\\FlareClient\\Tests\\": "tests"
  40. }
  41. },
  42. "scripts": {
  43. "analyse": "vendor/bin/phpstan analyse",
  44. "format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
  45. "test": "vendor/bin/pest",
  46. "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
  47. },
  48. "config": {
  49. "sort-packages": true,
  50. "allow-plugins": {
  51. "pestphp/pest-plugin": true,
  52. "phpstan/extension-installer": true
  53. }
  54. },
  55. "prefer-stable": true,
  56. "minimum-stability": "dev",
  57. "extra": {
  58. "branch-alias": {
  59. "dev-main": "1.1.x-dev"
  60. }
  61. }
  62. }