1. Go to this page and download the library: Download symplify/flex-loader library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
symplify / flex-loader example snippets
namespace App;
use Iterator;
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\HttpKernel\Kernel;
use Symfony\Component\Routing\RouteCollectionBuilder;
final class MyProjectKernel extends Kernel
{
use MicroKernelTrait;
/**
* @var string
*/
private const CONFIG_EXTS = '.{php,xml,yaml,yml}';
public function registerBundles(): Iterator
{
$contents = NFIG_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');
$loader->load(__DIR__ . '/optional/custom/path' . self::CONFIG_EXTS, 'glob');
}
protected function configureRoutes(RouteCollectionBuilder $routes): void
{
$confDir = $this->getProjectDir() . '/config';
$routes->import($confDir . '/{routes}/*' . self::CONFIG_EXTS, '/', 'glob');
$routes->import($confDir . '/{routes}/' . $this->environment . '/**/*' . self::CONFIG_EXTS, '/', 'glob');
$routes->import($confDir . '/{routes}' . self::CONFIG_EXTS, '/', 'glob');
$routes->import(__DIR__ . '/optional/custom/path' . self::CONFIG_EXTS, 'glob');
}
}
namespace App;
use Iterator;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Routing\RouteCollectionBuilder;
use Symplify\FlexLoader\Flex\FlexLoader;
final class MyProjectKernel extends Kernel
{
use MicroKernelTrait;
/**
* @var FlexLoader
*/
private $flexLoader;
public function __construct($environment, $debug)
{
parent::__construct($environment, $debug);
$this->flexLoader = new FlexLoader($environment, $this->getProjectDir());
}
public function registerBundles(): Iterator
{
return $this->flexLoader->loadBundles();
}
protected function configureContainer(ContainerBuilder $containerBuilder, LoaderInterface $loader): void
{
$this->flexLoader->loadConfigs($containerBuilder, $loader, [__DIR__ . '/optional/custom/path/']);
}
protected function configureRoutes(RouteCollectionBuilder $routeCollectionBuilder): void
{
$this->flexLoader->loadRoutes($routeCollectionBuilder, [__DIR__ . '/optional/custom/path/']);
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.