phpunit.php 948 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Register The Composer Auto Loader
  5. |--------------------------------------------------------------------------
  6. |
  7. | Composer provides a convenient, automatically generated class loader
  8. | for our application. We just need to utilize it! We'll require it
  9. | into the script here so that we do not have to worry about the
  10. | loading of any our classes "manually". Feels great to relax.
  11. |
  12. */
  13. require __DIR__.'/vendor/autoload.php';
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Set The Default Timezone
  17. |--------------------------------------------------------------------------
  18. |
  19. | Here we will set the default timezone for PHP. PHP is notoriously mean
  20. | if the timezone is not explicitly set. This will be used by each of
  21. | the PHP date and date-time functions throughout the application.
  22. |
  23. */
  24. date_default_timezone_set('UTC');