fbd3b1cb30
Directory structure, minimal skeleton files (info.xml, Application.php, routes.php, templates, Vue entry point), and requirements doc. No implementation yet. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
10 lines
135 B
PHP
10 lines
135 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'routes' => [
|
|
['name' => 'page#index', 'url' => '/', 'verb' => 'GET'],
|
|
],
|
|
];
|