123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- $app = new Illuminate\Foundation\Application;
- $env = $app->detectEnvironment(array(
- 'local' => array('your-machine-name'),
- ));
- $app->bindInstallPaths(require __DIR__.'/paths.php');
- $framework = $app['path.base'].'/vendor/laravel/framework/src';
- require $framework.'/Illuminate/Foundation/start.php';
- return $app;
|