composer.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "spatie/laravel-ignition",
  3. "description": "A beautiful error page for Laravel 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-curl": "*",
  22. "ext-json": "*",
  23. "ext-mbstring": "*",
  24. "monolog/monolog": "^2.3",
  25. "spatie/ignition": "^1.4.1",
  26. "spatie/flare-client-php": "^1.0.1",
  27. "symfony/console": "^5.0|^6.0",
  28. "symfony/var-dumper": "^5.0|^6.0",
  29. "illuminate/support": "^8.77|^9.27"
  30. },
  31. "require-dev": {
  32. "filp/whoops": "^2.14",
  33. "livewire/livewire": "^2.8|dev-develop",
  34. "mockery/mockery": "^1.4",
  35. "nunomaduro/larastan": "^1.0",
  36. "orchestra/testbench": "^6.23|^7.0",
  37. "pestphp/pest": "^1.20",
  38. "phpstan/extension-installer": "^1.1",
  39. "phpstan/phpstan-deprecation-rules": "^1.0",
  40. "phpstan/phpstan-phpunit": "^1.0",
  41. "spatie/laravel-ray": "^1.27"
  42. },
  43. "config": {
  44. "sort-packages": true,
  45. "allow-plugins": {
  46. "phpstan/extension-installer": true,
  47. "pestphp/pest-plugin": true
  48. }
  49. },
  50. "extra": {
  51. "laravel": {
  52. "providers": [
  53. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  54. ],
  55. "aliases": {
  56. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  57. }
  58. }
  59. },
  60. "autoload": {
  61. "psr-4": {
  62. "Spatie\\LaravelIgnition\\": "src"
  63. },
  64. "files": [
  65. "src/helpers.php"
  66. ]
  67. },
  68. "autoload-dev": {
  69. "psr-4": {
  70. "Spatie\\LaravelIgnition\\Tests\\": "tests"
  71. }
  72. },
  73. "minimum-stability": "dev",
  74. "prefer-stable": true,
  75. "scripts": {
  76. "analyse": "vendor/bin/phpstan analyse",
  77. "baseline": "vendor/bin/phpstan --generate-baseline",
  78. "format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
  79. "test": "vendor/bin/pest",
  80. "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
  81. },
  82. "support": {
  83. "issues": "https://github.com/spatie/laravel-ignition/issues",
  84. "forum": "https://twitter.com/flareappio",
  85. "source": "https://github.com/spatie/laravel-ignition",
  86. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction"
  87. }
  88. }