artisan 804 B

12345678910111213141516171819202122232425
  1. #!/usr/bin/env php
  2. <?php
  3. /**
  4. * Laravel - A PHP Framework For Web Artisans
  5. *
  6. * @package Laravel
  7. * @version 3.2.7
  8. * @author Taylor Otwell <taylorotwell@gmail.com>
  9. * @link http://laravel.com
  10. */
  11. // --------------------------------------------------------------
  12. // Set the core Laravel path constants.
  13. // --------------------------------------------------------------
  14. require 'paths.php';
  15. // --------------------------------------------------------------
  16. // Bootstrap the Laravel core.
  17. // --------------------------------------------------------------
  18. require path('sys').'core.php';
  19. // --------------------------------------------------------------
  20. // Launch the Laravel "Artisan" CLI.
  21. // --------------------------------------------------------------
  22. require path('sys').'cli/artisan'.EXT;