bootstrap.php 479 B

123456789101112131415161718
  1. <?php
  2. /*
  3. * This file is part of the RNCryptor package.
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. */
  8. if (file_exists(__DIR__.'/../vendor/autoload.php')) {
  9. require __DIR__.'/../vendor/autoload.php';
  10. } else if (@include('RNCryptor/Autoloader.php')) {
  11. RNCryptor\Autoloader::register();
  12. } else {
  13. die('ERROR: Unable to find a suitable mean to register RNCryptor\Autoloader.');
  14. }