composer.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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/backtrace": "^1.5.3",
  24. "spatie/flare-client-php": "^1.4.0",
  25. "symfony/console": "^5.4|^6.0|^7.0",
  26. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  27. },
  28. "require-dev" : {
  29. "illuminate/cache" : "^9.52|^10.0|^11.0",
  30. "mockery/mockery" : "^1.4",
  31. "pestphp/pest" : "^1.20|^2.0",
  32. "phpstan/extension-installer" : "^1.1",
  33. "phpstan/phpstan-deprecation-rules" : "^1.0",
  34. "phpstan/phpstan-phpunit" : "^1.0",
  35. "psr/simple-cache-implementation" : "*",
  36. "symfony/cache" : "^5.4|^6.0|^7.0",
  37. "symfony/process" : "^5.4|^6.0|^7.0",
  38. "vlucas/phpdotenv" : "^5.5"
  39. },
  40. "suggest" : {
  41. "openai-php/client" : "Require get solutions from OpenAI",
  42. "simple-cache-implementation" : "To cache solutions from OpenAI"
  43. },
  44. "config" : {
  45. "sort-packages" : true,
  46. "allow-plugins" : {
  47. "phpstan/extension-installer": true,
  48. "pestphp/pest-plugin": true,
  49. "php-http/discovery": false
  50. }
  51. },
  52. "autoload" : {
  53. "psr-4" : {
  54. "Spatie\\Ignition\\" : "src"
  55. }
  56. },
  57. "autoload-dev" : {
  58. "psr-4" : {
  59. "Spatie\\Ignition\\Tests\\" : "tests"
  60. }
  61. },
  62. "minimum-stability" : "dev",
  63. "prefer-stable" : true,
  64. "scripts" : {
  65. "analyse" : "vendor/bin/phpstan analyse",
  66. "baseline" : "vendor/bin/phpstan analyse --generate-baseline",
  67. "format" : "vendor/bin/php-cs-fixer fix --allow-risky=yes",
  68. "test" : "vendor/bin/pest",
  69. "test-coverage" : "vendor/bin/phpunit --coverage-html coverage"
  70. },
  71. "support" : {
  72. "issues" : "https://github.com/spatie/ignition/issues",
  73. "forum" : "https://twitter.com/flareappio",
  74. "source" : "https://github.com/spatie/ignition",
  75. "docs" : "https://flareapp.io/docs/ignition-for-laravel/introduction"
  76. },
  77. "extra" : {
  78. "branch-alias" : {
  79. "dev-main" : "1.5.x-dev"
  80. }
  81. }
  82. }