install.php 340 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * @package Grav\Core
  4. *
  5. * @copyright Copyright (C) 2015 - 2019 Trilby Media, LLC. All rights reserved.
  6. * @license MIT License; see LICENSE file for details.
  7. */
  8. if (!defined('GRAV_ROOT')) {
  9. die();
  10. }
  11. use Grav\Installer\Install;
  12. require_once __DIR__ . '/src/Grav/Installer/Install.php';
  13. return Install::instance();