mirror of
https://github.com/restoreddev/phpapprentice.git
synced 2025-10-23 19:06:05 +02:00
19 lines
472 B
PHP
19 lines
472 B
PHP
<?php
|
|
|
|
use Apprentice\Page;
|
|
|
|
return [
|
|
'icon_dir' => __DIR__ . '/../icons',
|
|
'code_dir' => __DIR__ . '/code',
|
|
'templates_dir' => __DIR__ . '/templates',
|
|
'output_dir' => '/tmp/apprentice_output',
|
|
'pages' => [
|
|
Page::create('index', 'index.phtml'),
|
|
Page::create('test', null, 'test.php', [
|
|
'title' => 'Test Title',
|
|
'subtitle' => 'Test Subtitle',
|
|
'description' => 'Test Description',
|
|
]),
|
|
],
|
|
];
|