index.php 312 B

123456789101112
  1. <?php
  2. require_once __DIR__ . '/vendor/autoload.php';
  3. $database = new \Hamlet\Database\MySQL\MySQLDatabase(
  4. 'p:tfb-database',
  5. 'benchmarkdbuser',
  6. 'benchmarkdbpass',
  7. 'hello_world'
  8. );
  9. $application = new \Benchmark\Application($database);
  10. \Hamlet\Http\Bootstraps\ServerBootstrap::run($application);