bootstrap.php 383 B

123456789101112131415
  1. <?php
  2. /**
  3. * Copyright © 2013-2017 Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. error_reporting(E_ALL);
  7. define('UPDATER_BP', realpath(__DIR__ . '/../'));
  8. if (!defined('MAGENTO_BP')) {
  9. define('MAGENTO_BP', realpath(__DIR__ . '/../../'));
  10. }
  11. define('BACKUP_DIR', MAGENTO_BP . '/var/backups/');
  12. require_once UPDATER_BP . '/vendor/autoload.php';