Files
spa-api/tests/bootstrap.php

40 lines
1.0 KiB
PHP
Raw Normal View History

<?php
/*
|--------------------------------------------------------------------------
| Installation Paths
|--------------------------------------------------------------------------
|
| Here you may specify the location of the various Laravel framework
| directories for your installation.
|
| Of course, these are already set to the proper default values, so you do
| not need to change them if you have not modified the directory structure.
|
*/
2011-10-10 22:17:22 -05:00
$application = '../application';
2011-10-10 22:17:22 -05:00
$laravel = '../laravel';
2011-10-10 22:17:22 -05:00
$packages = '../packages';
2011-10-10 22:17:22 -05:00
$storage = '../storage';
2011-10-10 22:17:22 -05:00
$public = '../public';
2011-10-26 22:27:19 -05:00
/*
|--------------------------------------------------------------------------
| Test Path Constants
|--------------------------------------------------------------------------
*/
define('FIXTURE_PATH', realpath('Fixtures').'/');
/*
|--------------------------------------------------------------------------
| Bootstrap The Laravel Core
|--------------------------------------------------------------------------
*/
require realpath($laravel).'/bootstrap/core.php';