OpenSource CLI-App to install and handle stuff related to Web-Server
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.

72 lines
2.3 KiB

4 years ago
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Enabled
  6. |--------------------------------------------------------------------------
  7. |
  8. | This value determines if the app name should be represented as an
  9. | ASCII logo. This file provides a sane default location for all
  10. | information concerning the logo and is display customization.
  11. |
  12. */
  13. 'enabled' => true,
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Default Font
  17. |--------------------------------------------------------------------------
  18. |
  19. | This option defines the font which should be used for rendering.
  20. | By default, one default font is shipped. However, you are free
  21. | to download and use additional fonts: http://www.figlet.org.
  22. |
  23. */
  24. 'font' => \LaravelZero\Framework\Components\Logo\FigletString::DEFAULT_FONT,
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Output Width
  28. |--------------------------------------------------------------------------
  29. |
  30. | This option defines the maximum width of the output string. This is
  31. | used for word-wrap as well as justification. Be careful when using
  32. | small values, because they may result in an undefined behavior.
  33. |
  34. */
  35. 'outputWidth' => 80,
  36. /*
  37. |--------------------------------------------------------------------------
  38. | Justification
  39. |--------------------------------------------------------------------------
  40. |
  41. | This option defines the justification of the logo text. By default,
  42. | justification is provided, which will work well on most of your
  43. | console apps. Of course, you are free to change this value.
  44. |
  45. */
  46. 'justification' => null,
  47. /*
  48. |--------------------------------------------------------------------------
  49. | Right To Left
  50. |--------------------------------------------------------------------------
  51. |
  52. | This option defines the option in which the text is written. By, default
  53. | the setting of the font-file is used. When justification is not defined,
  54. | a text written from right-to-left is automatically right-aligned.
  55. |
  56. | Possible values: "right-to-left", "left-to-right", null
  57. |
  58. */
  59. 'rightToLeft' => null,
  60. ];