Skip to content
Snippets Groups Projects
Select Git revision
  • db314538a128671a83dc4d808f01ba88a2488f71
  • main default protected
  • demo protected
  • master
  • icon-set-mapping
  • production protected
  • revert-62666d1a
  • favorites-and-recent-files
  • lit2
  • wc-part
  • mark-downloaded-files
  • feature/annotpdf-test
  • fix-zip-upload
  • config-cleanup
  • wip
  • app-shell-update
16 results

i18next-scanner.config.js

Blame
  • bootstrap.php 346 B
    <?php
    
    declare(strict_types=1);
    
    use Symfony\Component\Dotenv\Dotenv;
    
    require dirname(__DIR__).'/vendor/autoload.php';
    
    if (file_exists(dirname(__DIR__).'/config/bootstrap.php')) {
        require dirname(__DIR__).'/config/bootstrap.php';
    } elseif (method_exists(Dotenv::class, 'bootEnv')) {
        (new Dotenv())->bootEnv(dirname(__DIR__).'/.env');
    }