mirror of
https://github.com/restoreddev/phpapprentice.git
synced 2025-08-02 12:57:59 +02:00
9 lines
148 B
PHP
9 lines
148 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
load_config(__DIR__ . '/config.php');
|
|
|
|
$app = new Apprentice\App;
|
|
$app->main();
|