PHP code example of sweetchuck / robo-composer

1. Go to this page and download the library: Download sweetchuck/robo-composer library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

sweetchuck / robo-composer example snippets




declare(strict_types = 1);

class RoboFileExample extends \Robo\Tasks
{
    use \Sweetchuck\Robo\Composer\ComposerTaskLoader;

    /**
     * @hook validate @validateArgumentFileName
     */
    public function validateArgumentFileName(\Consolidation\AnnotatedCommand\CommandData $commandData)
    {
        $argNames = $commandData->annotationData()->getList(__FUNCTION__);
        $input = $commandData->input();
        foreach ($argNames as $argName) {
            assert($input->hasArgument($argName), 'invalid argument name');
            $input->setArgument(
                $argName,
                $this->processFileName($input->getArgument($argName)),
            );
        }
    }

    /**
     * @command composer:lock-diff
     *
     * @validateArgumentFileName fileA,fileB
     */
    public function composerLockDiff(string $fileA, string $fileB)
    {
        $a = json_decode(file_get_contents($fileA), true);
        $b = json_decode(file_get_contents($fileB), true);

        return $this
            ->collectionBuilder()
            ->addTask(
                $this
                    ->taskComposerLockDiffer()
                    ->setLockA($a)
                    ->setLockB($b)
            )
            ->addCode(function (\Robo\State\Data $data): int {
                $this
                    ->output()
                    ->writeln(\Symfony\Component\Yaml\Yaml::dump($data['composer.lockDiff']));

                return 0;
            });
    }

    protected function processFileName(string $fileName): string
    {
        return preg_replace('@^/proc/self/fd/(\d+)$@', 'php://fd/$1', $fileName);
    }
}



declare(strict_types = 1);

class RoboFileExample extends \Robo\Tasks
{
    use \Sweetchuck\Robo\Composer\ComposerTaskLoader;

    /**
     * @command composer:package-paths
     */
    public function composerPackagePaths()
    {
        return $this
            ->collectionBuilder()
            ->addTask($this->taskComposerPackagePaths())
            ->addCode(function (\Robo\State\Data $data): int {
                $output = $this->output();
                foreach ($data['composer.packagePaths'] as $name => $path) {
                    $output->writeln("$name => $path");
                }

                return 0;
            });
    }
}