Bicycle/bin/bicycle
Egor Isaev e761ce9287 Add project structure: composer.json, System/ directories, bin/bicycle
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-27 15:47:52 +03:00

12 lines
216 B
PHP
Executable File

#!/usr/bin/env php
<?php
declare(strict_types=1);
define('BASE_PATH', dirname(__DIR__));
require_once BASE_PATH . '/vendor/autoload.php';
$app = new \Bicycle\Core\Application(BASE_PATH);
$app->runConsole($argv);