phpunit.php 819 Bytes
Newer Older
1 2 3
<?php

// --------------------------------------------------------------
4 5 6 7 8
// Define the directory separator for the environment.
// --------------------------------------------------------------
define('DS', DIRECTORY_SEPARATOR);

// --------------------------------------------------------------
9 10 11 12 13 14 15
// Set the core Laravel path constants.
// --------------------------------------------------------------
require 'paths.php';

// --------------------------------------------------------------
// Bootstrap the Laravel core.
// --------------------------------------------------------------
Taylor Otwell committed
16
require path('sys').'core.php';
17 18 19 20

// --------------------------------------------------------------
// Start the default bundle.
// --------------------------------------------------------------
21
Laravel\Bundle::start(DEFAULT_BUNDLE);