artisan 804 Bytes
Newer Older
Taylor Otwell committed
1
#!/usr/bin/env php
2
<?php
Taylor Otwell committed
3 4 5 6
/**
 * Laravel - A PHP Framework For Web Artisans
 *
 * @package  Laravel
7
 * @version  3.2.7
Taylor Otwell committed
8 9 10
 * @author   Taylor Otwell <taylorotwell@gmail.com>
 * @link     http://laravel.com
 */
11 12

// --------------------------------------------------------------
13
// Set the core Laravel path constants.
14
// --------------------------------------------------------------
15
require 'paths.php';
16 17 18 19

// --------------------------------------------------------------
// Bootstrap the Laravel core.
// --------------------------------------------------------------
Taylor Otwell committed
20
require path('sys').'core.php';
21 22 23 24

// --------------------------------------------------------------
// Launch the Laravel "Artisan" CLI.
// --------------------------------------------------------------
Taylor Otwell committed
25
require path('sys').'cli/artisan'.EXT;