+++ /dev/null
-#!/usr/bin/env php
-<?php
-
-use App\Kernel;
-use Symfony\Bundle\FrameworkBundle\Console\Application;
-
-if (!is_dir(dirname(__DIR__).'/vendor')) {
- throw new LogicException('Dependencies are missing. Try running "composer install".');
-}
-
-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);
-};
+++ /dev/null
-<?php
-
-return [
- Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
- Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
- Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
- Rapsys\TreeBundle\RapsysTreeBundle::class => ['all' => true],
- Rapsys\PackBundle\RapsysPackBundle::class => ['all' => true],
- Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
-];
+++ /dev/null
-<?php
-
-if (file_exists(dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php')) {
- require dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php';
-}
+++ /dev/null
-../../vendor/rapsys/packbundle/Resources/public/
\ No newline at end of file
+++ /dev/null
-../../vendor/rapsys/treebundle/Resources/public/
\ No newline at end of file