index.php 367 B

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