File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,11 @@ use Ibis\Commands\SampleCommand;
7
7
use Ibis \Commands \SortContentCommand ;
8
8
use Symfony \Component \Console \Application ;
9
9
10
- require file_exists (__DIR__ .'/vendor/autoload.php ' ) ? __DIR__ .'/vendor/autoload.php ' : __DIR__ .'/../../autoload.php ' ;
10
+ if (file_exists (__DIR__ .'/../../autoload.php ' )) {
11
+ require __DIR__ .'/../../autoload.php ' ;
12
+ } else {
13
+ require __DIR__ .'/vendor/autoload.php ' ;
14
+ }
11
15
12
16
/**
13
17
* Start the console application.
Original file line number Diff line number Diff line change 15
15
/**
16
16
* The list of fonts to be used in the different themes.
17
17
*/
18
- 'fonts ' => [],
18
+ 'fonts ' => [
19
+ // 'calibri' => 'Calibri-Regular.ttf',
20
+ // 'times' => 'times-regular.ttf',
21
+ ],
19
22
20
23
/**
21
24
* Page ranges to be used with the sample command.
You can’t perform that action at this time.
0 commit comments