bootstrap.php 179 B

12345678910
  1. <?php
  2. // Enable Error Reporting
  3. error_reporting(E_ALL);
  4. ini_set('display_errors', 'on');
  5. // Requires
  6. require_once __DIR__.'/../vendor/autoload.php';
  7. // EOF