You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.3 KiB

3 years ago
  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|^8.0",
  14. "facade/ignition-contracts": "~1.0",
  15. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  16. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  17. "symfony/mime": "^3.4|^4.0|^5.1",
  18. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  19. },
  20. "require-dev": {
  21. "friendsofphp/php-cs-fixer": "^2.14",
  22. "spatie/phpunit-snapshot-assertions": "^2.0",
  23. "phpunit/phpunit": "^7.5.16"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Facade\\FlareClient\\": "src"
  28. },
  29. "files": [
  30. "src/helpers.php"
  31. ]
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "Facade\\FlareClient\\Tests\\": "tests"
  36. }
  37. },
  38. "scripts": {
  39. "format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
  40. "test": "vendor/bin/phpunit",
  41. "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
  42. },
  43. "config": {
  44. "sort-packages": true
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "1.0-dev"
  49. }
  50. }
  51. }