autoload.php 687 B

123456789101112131415161718192021222324
  1. <?php
  2. define('LARAVEL_START', microtime(true));
  3. /*
  4. * 增加定义表名称常量
  5. * add by pjh 20180404
  6. */
  7. define('TABLE_ADMINS', 'admins');
  8. define('TABLE_USERS', 'users');
  9. /*
  10. |--------------------------------------------------------------------------
  11. | Register The Composer Auto Loader
  12. |--------------------------------------------------------------------------
  13. |
  14. | Composer provides a convenient, automatically generated class loader
  15. | for our application. We just need to utilize it! We'll require it
  16. | into the script here so we do not have to manually load any of
  17. | our application's PHP classes. It just feels great to relax.
  18. |
  19. */
  20. require __DIR__.'/../vendor/autoload.php';