composer.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "facade/ignition",
  3. "description": "A beautiful error page for Laravel applications.",
  4. "keywords": [
  5. "error",
  6. "page",
  7. "laravel",
  8. "flare"
  9. ],
  10. "homepage": "https://github.com/facade/ignition",
  11. "license": "MIT",
  12. "require": {
  13. "php": "^7.1",
  14. "ext-json": "*",
  15. "ext-mbstring": "*",
  16. "facade/flare-client-php": "^1.3",
  17. "facade/ignition-contracts": "^1.0",
  18. "filp/whoops": "^2.4",
  19. "illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0",
  20. "monolog/monolog": "^1.12 || ^2.0",
  21. "scrivo/highlight.php": "^9.15",
  22. "symfony/console": "^3.4 || ^4.0",
  23. "symfony/var-dumper": "^3.4 || ^4.0"
  24. },
  25. "require-dev": {
  26. "friendsofphp/php-cs-fixer": "^2.14",
  27. "mockery/mockery": "^1.2",
  28. "orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0"
  29. },
  30. "suggest": {
  31. "laravel/telescope": "^2.0"
  32. },
  33. "config": {
  34. "sort-packages": true
  35. },
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "1.0-dev"
  39. },
  40. "laravel": {
  41. "providers": [
  42. "Facade\\Ignition\\IgnitionServiceProvider"
  43. ],
  44. "aliases": {
  45. "Flare": "Facade\\Ignition\\Facades\\Flare"
  46. }
  47. }
  48. },
  49. "autoload": {
  50. "psr-4": {
  51. "Facade\\Ignition\\": "src"
  52. },
  53. "files": [
  54. "src/helpers.php"
  55. ]
  56. },
  57. "autoload-dev": {
  58. "psr-4": {
  59. "Facade\\Ignition\\Tests\\": "tests"
  60. }
  61. },
  62. "minimum-stability": "dev",
  63. "prefer-stable": true,
  64. "scripts": {
  65. "format": [
  66. "vendor/bin/php-cs-fixer fix"
  67. ],
  68. "test": "vendor/bin/phpunit",
  69. "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
  70. },
  71. "support": {
  72. "issues": "https://github.com/facade/ignition/issues",
  73. "forum": "https://twitter.com/flareappio",
  74. "source": "https://github.com/facade/ignition",
  75. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction"
  76. }
  77. }