artisan 785 B

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