composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "facade/flare-client-php",
  3. "description": "Send PHP errors to Flare",
  4. "keywords": [
  5. "facade",
  6. "flare",
  7. "exception",
  8. "reporting"
  9. ],
  10. "homepage": "https://github.com/facade/flare-client-php",
  11. "license": "MIT",
  12. "require": {
  13. "php": "^7.1",
  14. "illuminate/pipeline": "~5.5|~5.6|~5.7|~5.8|^6.0",
  15. "symfony/http-foundation": "~3.3|~4.1",
  16. "symfony/var-dumper": "^3.4|^4.0|^5.0",
  17. "facade/ignition-contracts": "~1.0"
  18. },
  19. "require-dev": {
  20. "larapack/dd": "^1.1",
  21. "spatie/phpunit-snapshot-assertions": "^2.0",
  22. "phpunit/phpunit": "^7.5.16"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Facade\\FlareClient\\": "src"
  27. },
  28. "files": [
  29. "src/helpers.php"
  30. ]
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "Facade\\FlareClient\\Tests\\": "tests"
  35. }
  36. },
  37. "scripts": {
  38. "test": "vendor/bin/phpunit",
  39. "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
  40. },
  41. "config": {
  42. "sort-packages": true
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "1.0-dev"
  47. }
  48. }
  49. }