mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
12 lines
193 B
PHP
12 lines
193 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Symplify\MonorepoBuilder\Config\MBConfig;
|
|
|
|
return static function (MBConfig $config) {
|
|
$config->packageDirectories([
|
|
__DIR__.'/src',
|
|
]);
|
|
};
|