composer.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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|^10.0|^11.0|^12.0",
  15. "spatie/backtrace": "^1.6.1",
  16. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  17. "symfony/mime": "^5.2|^6.0|^7.0",
  18. "symfony/process": "^5.2|^6.0|^7.0",
  19. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  20. },
  21. "require-dev": {
  22. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  23. "phpstan/extension-installer": "^1.1",
  24. "phpstan/phpstan-deprecation-rules": "^1.0",
  25. "phpstan/phpstan-phpunit": "^1.0",
  26. "spatie/pest-plugin-snapshots": "^1.0|^2.0",
  27. "pestphp/pest": "^1.20|^2.0"
  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. "baseline": "vendor/bin/phpstan analyse --generate-baseline",
  45. "format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
  46. "test": "vendor/bin/pest",
  47. "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
  48. },
  49. "config": {
  50. "sort-packages": true,
  51. "allow-plugins": {
  52. "pestphp/pest-plugin": true,
  53. "phpstan/extension-installer": true
  54. }
  55. },
  56. "prefer-stable": true,
  57. "minimum-stability": "dev",
  58. "extra": {
  59. "branch-alias": {
  60. "dev-main": "1.3.x-dev"
  61. }
  62. }
  63. }