1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- declare(strict_types=1);
- namespace Fgm\Drupal\Composer;
- use Composer\Plugin\Capability\CommandProvider;
- class BuilderCommandProvider implements CommandProvider {
-
- protected $composer;
-
- protected $io;
-
- protected $plugin;
-
- public function __construct(?array $args = NULL) {
- $this->composer = $args['composer'];
- $this->io = $args['io'];
- $this->plugin = $args['plugin'];
- }
-
- public function getCommands() {
- return [
- new BuildServicesCommand(),
- new BuildSettingsCommand(),
- new HugoConfigCommand(),
- new MergeParamsCommand(),
- new PhpMemcacheAdminConfigCommand(),
- ];
- }
- }
|