BaseBuilderCommand.php 303 B

1234567891011121314151617
  1. <?php
  2. namespace Fgm\Drupal\Composer;
  3. use Composer\Command\BaseCommand;
  4. abstract class BaseBuilderCommand extends BaseCommand
  5. {
  6. protected function getBuilderConfig(): array
  7. {
  8. $conf = $this->getComposer()->getPackage()->getExtra()[Builder::NAME] ?? [];
  9. return $conf;
  10. }
  11. }