mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-05 20:57:12 +00:00
15 lines
437 B
PHP
15 lines
437 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
use Symplify\ComposerJsonManipulator\ValueObject\ComposerJsonSection;
|
|
use Symplify\MonorepoBuilder\Config\MBConfig;
|
|
use Symplify\MonorepoBuilder\ValueObject\Option;
|
|
|
|
return static function (MBConfig $config): void {
|
|
$config->packageDirectories([
|
|
// default value
|
|
__DIR__ . '/src/Sylius',
|
|
]);
|
|
};
|