phpunit.php 1010 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Laravel - A PHP Framework For Web Artisans
  4. *
  5. * @package Laravel
  6. * @version 2.2.0 (Beta 1)
  7. * @author Taylor Otwell <taylorotwell@gmail.com>
  8. * @link http://laravel.com
  9. */
  10. // --------------------------------------------------------------
  11. // Define the directory separator for the environment.
  12. // --------------------------------------------------------------
  13. define('DS', DIRECTORY_SEPARATOR);
  14. // --------------------------------------------------------------
  15. // Set the core Laravel path constants.
  16. // --------------------------------------------------------------
  17. require 'paths.php';
  18. // --------------------------------------------------------------
  19. // Bootstrap the Laravel core.
  20. // --------------------------------------------------------------
  21. require $GLOBALS['SYS_PATH'].'core.php';
  22. // --------------------------------------------------------------
  23. // Start the default bundle.
  24. // --------------------------------------------------------------
  25. Bundle::start(DEFAULT_BUNDLE);