composer.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "spatie/ignition",
  3. "description": "A beautiful error page for PHP applications.",
  4. "keywords": [
  5. "error",
  6. "page",
  7. "laravel",
  8. "flare"
  9. ],
  10. "authors": [
  11. {
  12. "name": "Spatie",
  13. "email": "info@spatie.be",
  14. "role": "Developer"
  15. }
  16. ],
  17. "homepage": "https://flareapp.io/ignition",
  18. "license": "MIT",
  19. "require": {
  20. "php": "^8.0",
  21. "ext-json": "*",
  22. "ext-mbstring": "*",
  23. "spatie/flare-client-php": "^1.1",
  24. "monolog/monolog": "^2.0",
  25. "symfony/console": "^5.4|^6.0",
  26. "symfony/var-dumper": "^5.4|^6.0"
  27. },
  28. "require-dev": {
  29. "mockery/mockery": "^1.4",
  30. "phpstan/extension-installer": "^1.1",
  31. "phpstan/phpstan-deprecation-rules": "^1.0",
  32. "phpstan/phpstan-phpunit": "^1.0",
  33. "symfony/process": "^5.4|^6.0",
  34. "pestphp/pest": "^1.20"
  35. },
  36. "config": {
  37. "sort-packages": true,
  38. "allow-plugins": {
  39. "phpstan/extension-installer": true,
  40. "pestphp/pest-plugin": true
  41. }
  42. },
  43. "autoload": {
  44. "psr-4": {
  45. "Spatie\\Ignition\\": "src"
  46. }
  47. },
  48. "autoload-dev": {
  49. "psr-4": {
  50. "Spatie\\Ignition\\Tests\\": "tests"
  51. }
  52. },
  53. "minimum-stability": "dev",
  54. "prefer-stable": true,
  55. "scripts": {
  56. "analyse": "vendor/bin/phpstan analyse",
  57. "format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
  58. "test": "vendor/bin/pest",
  59. "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
  60. },
  61. "support": {
  62. "issues": "https://github.com/spatie/ignition/issues",
  63. "forum": "https://twitter.com/flareappio",
  64. "source": "https://github.com/spatie/ignition",
  65. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction"
  66. },
  67. "extra": {
  68. "branch-alias": {
  69. "dev-main": "1.2.x-dev"
  70. }
  71. }
  72. }