index.php 723 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /*
  3. * This file is part of the Jiannei/lumen-api-starter.
  4. *
  5. * (c) Jiannei <longjian.huang@foxmail.com>
  6. *
  7. * This source file is subject to the MIT license that is bundled
  8. * with this source code in the file LICENSE.
  9. */
  10. $app = require __DIR__.'/../bootstrap/app.php';
  11. /*
  12. |--------------------------------------------------------------------------
  13. | Run The Application
  14. |--------------------------------------------------------------------------
  15. |
  16. | Once we have the application, we can handle the incoming request
  17. | through the kernel, and send the associated response back to
  18. | the client's browser allowing them to enjoy the creative
  19. | and wonderful application we have prepared for them.
  20. |
  21. */
  22. $app->run();