-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* This file is part of the guanguans/ai-commit. | ||
* | ||
* (c) guanguans <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled. | ||
*/ | ||
|
||
return [ | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| Enabled | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This value determines if the app name should be represented as an | ||
| ASCII logo. This file provides a sane default location for all | ||
| information concerning the logo and is display customization. | ||
| | ||
*/ | ||
|
||
'enabled' => true, | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Default Font | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This option defines the font which should be used for rendering. | ||
| By default, one default font is shipped. However, you are free | ||
| to download and use additional fonts: http://www.figlet.org. | ||
| | ||
*/ | ||
|
||
'font' => \LaravelZero\Framework\Components\Logo\FigletString::DEFAULT_FONT, | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Output Width | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This option defines the maximum width of the output string. This is | ||
| used for word-wrap as well as justification. Be careful when using | ||
| small values, because they may result in an undefined behavior. | ||
| | ||
*/ | ||
|
||
'outputWidth' => 80, | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Justification | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This option defines the justification of the logo text. By default, | ||
| justification is provided, which will work well on most of your | ||
| console apps. Of course, you are free to change this value. | ||
| | ||
*/ | ||
|
||
'justification' => null, | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Right To Left | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This option defines the option in which the text is written. By, default | ||
| the setting of the font-file is used. When justification is not defined, | ||
| a text written from right-to-left is automatically right-aligned. | ||
| | ||
| Possible values: "right-to-left", "left-to-right", null | ||
| | ||
*/ | ||
|
||
'rightToLeft' => null, | ||
]; |