Skip to content
Snippets Groups Projects
Select Git revision
  • d66f613337ad1151e7a641787a5d0255fc97f136
  • main default protected
  • 24-everything-from-git
  • 45-create-new-poc-deployment-with-docker
  • 44-add-a-cli-tool
  • improve-deployment
  • 31-backend
  • bash-script-bug-fix
  • upgrades_submodules
  • 24-dependencies-build-nested-watch
  • 24-dependencies-build-using-workspaces
  • 24-dependencies-build
  • wip-all-local
  • 10-annotot
  • 3-annotation-plugin-showing-up
15 results

webpack.config.js

Blame
  • console 492 B
    #!/usr/bin/env php
    <?php
    
    use App\Kernel;
    use Symfony\Bundle\FrameworkBundle\Console\Application;
    
    if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {
        throw new LogicException('Symfony Runtime is missing. Try running "composer require symfony/runtime".');
    }
    
    require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
    
    return function (array $context) {
        $kernel = new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
    
        return new Application($kernel);
    };