|
@@ -3,51 +3,36 @@
|
|
|
namespace App;
|
|
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
|
|
|
-use Symfony\Component\Config\Loader\LoaderInterface;
|
|
|
-use Symfony\Component\Config\Resource\FileResource;
|
|
|
-use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
|
+use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
|
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
|
|
|
-use Symfony\Component\Routing\RouteCollectionBuilder;
|
|
|
+use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
|
|
|
|
|
|
class Kernel extends BaseKernel
|
|
|
{
|
|
|
use MicroKernelTrait;
|
|
|
|
|
|
- private const CONFIG_EXTS = '.{php,xml,yaml,yml}';
|
|
|
-
|
|
|
- public function registerBundles(): iterable
|
|
|
+ protected function configureContainer(ContainerConfigurator $container): void
|
|
|
{
|
|
|
- $contents = require $this->getProjectDir().'/config/bundles.php';
|
|
|
- foreach ($contents as $class => $envs) {
|
|
|
- if ($envs[$this->environment] ?? $envs['all'] ?? false) {
|
|
|
- yield new $class();
|
|
|
- }
|
|
|
+ $container->import('../config/{packages}/*.yaml');
|
|
|
+ $container->import('../config/{packages}/'.$this->environment.'/*.yaml');
|
|
|
+
|
|
|
+ if (is_file(\dirname(__DIR__).'/config/services.yaml')) {
|
|
|
+ $container->import('../config/{services}.yaml');
|
|
|
+ $container->import('../config/{services}_'.$this->environment.'.yaml');
|
|
|
+ } elseif (is_file($path = \dirname(__DIR__).'/config/services.php')) {
|
|
|
+ (require $path)($container->withPath($path), $this);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public function getProjectDir(): string
|
|
|
+ protected function configureRoutes(RoutingConfigurator $routes): void
|
|
|
{
|
|
|
- return \dirname(__DIR__);
|
|
|
- }
|
|
|
+ $routes->import('../config/{routes}/'.$this->environment.'/*.yaml');
|
|
|
+ $routes->import('../config/{routes}/*.yaml');
|
|
|
|
|
|
- protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader): void
|
|
|
- {
|
|
|
- $container->addResource(new FileResource($this->getProjectDir().'/config/bundles.php'));
|
|
|
- $container->setParameter('container.dumper.inline_class_loader', true);
|
|
|
- $confDir = $this->getProjectDir().'/config';
|
|
|
-
|
|
|
- $loader->load($confDir.'/{packages}/*'.self::CONFIG_EXTS, 'glob');
|
|
|
- $loader->load($confDir.'/{packages}/'.$this->environment.'/**/*'.self::CONFIG_EXTS, 'glob');
|
|
|
- $loader->load($confDir.'/{services}'.self::CONFIG_EXTS, 'glob');
|
|
|
- $loader->load($confDir.'/{services}_'.$this->environment.self::CONFIG_EXTS, 'glob');
|
|
|
- }
|
|
|
-
|
|
|
- protected function configureRoutes(RouteCollectionBuilder $routes): void
|
|
|
- {
|
|
|
- $confDir = $this->getProjectDir().'/config';
|
|
|
-
|
|
|
- $routes->import($confDir.'/{routes}/'.$this->environment.'/**/*'.self::CONFIG_EXTS, '/', 'glob');
|
|
|
- $routes->import($confDir.'/{routes}/*'.self::CONFIG_EXTS, '/', 'glob');
|
|
|
- $routes->import($confDir.'/{routes}'.self::CONFIG_EXTS, '/', 'glob');
|
|
|
+ if (is_file(\dirname(__DIR__).'/config/routes.yaml')) {
|
|
|
+ $routes->import('../config/{routes}.yaml');
|
|
|
+ } elseif (is_file($path = \dirname(__DIR__).'/config/routes.php')) {
|
|
|
+ (require $path)($routes->withPath($path), $this);
|
|
|
+ }
|
|
|
}
|
|
|
}
|