1
0
mirror of https://github.com/restoreddev/phpapprentice.git synced 2025-10-24 03:16:07 +02:00
Files
phpapprentice/test/static/config.php

20 lines
516 B
PHP

<?php
use Apprentice\Page;
return [
'icon_dir' => __DIR__ . '/../icons',
'chapter_dir' => __DIR__ . '/chapter',
'templates_dir' => __DIR__ . '/templates',
'output_dir' => '/tmp/apprentice_output',
'files_dir' => __DIR__ . '/files',
'pages' => [
Page::create('index', 'index.phtml'),
Page::create('test', null, 'test.md', [
'title' => 'Test Title',
'subtitle' => 'Test Subtitle',
'description' => 'Test Description',
]),
],
];