Skip to content

DependenciesCommand

github-actions edited this page Apr 22, 2026 · 1 revision

Orchestrates dependency analysis across the supported Composer analyzers.

This command MUST report missing, unused, and misplaced dependencies using a single, deterministic report that is friendly for local development and CI runs.


Methods

__construct

public __construct(\FastForward\DevTools\Process\ProcessBuilderInterface $processBuilder, \FastForward\DevTools\Process\ProcessQueueInterface $processQueue, \Symfony\Component\Config\FileLocatorInterface $fileLocator, \Psr\Log\LoggerInterface $logger): mixed

Parameters:

Parameter Type Description
$processBuilder \FastForward\DevTools\Process\ProcessBuilderInterface creates analyzer and upgrade processes
$processQueue \FastForward\DevTools\Process\ProcessQueueInterface executes queued processes
$fileLocator \Symfony\Component\Config\FileLocatorInterface resolves the dependency analyser configuration
$logger \Psr\Log\LoggerInterface writes command feedback

configure

Configures the dependency workflow options.

protected configure(): void

execute

Executes the dependency analysis workflow.

protected execute(\Symfony\Component\Console\Input\InputInterface $input, \Symfony\Component\Console\Output\OutputInterface $output): int

Parameters:

Parameter Type Description
$input \Symfony\Component\Console\Input\InputInterface the runtime command input
$output \Symfony\Component\Console\Output\OutputInterface the console output stream

Return Value:

the command execution status code


Inherited methods

addJsonOption

Adds the standard JSON output options to the current command.

protected addJsonOption(): static

isJsonOutput

Determines whether JSON output was requested.

protected isJsonOutput(\Symfony\Component\Console\Input\InputInterface $input): bool

The pretty-json flag SHALL imply JSON output.

Parameters:

Parameter Type Description
$input \Symfony\Component\Console\Input\InputInterface

isPrettyJsonOutput

Determines whether pretty JSON output was requested.

protected isPrettyJsonOutput(\Symfony\Component\Console\Input\InputInterface $input): bool

Parameters:

Parameter Type Description
$input \Symfony\Component\Console\Input\InputInterface

Clone this wiki locally