Bicycle/index.php
Egor Isaev e672216b8a Initial commit: entry point and project structure
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-27 15:28:15 +03:00

11 lines
176 B
PHP

<?php
declare(strict_types=1);
define('BASE_PATH', __DIR__);
require_once BASE_PATH . '/vendor/autoload.php';
$app = new \Bicycle\Core\Application(BASE_PATH);
$app->run();