Files
composer-package-plugin/src/Command/PackagePublishCommand.php

25 lines
592 B
PHP
Raw Normal View History

2025-12-28 02:28:35 +01:00
<?php
namespace NoccyLabs\Composer\PackagePlugin\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Composer\Command\BaseCommand;
class PackagePublishCommand extends BaseCommand
{
protected function configure(): void
{
$this
->setName('package:publish')
->setDescription("Publish a package to a composer repository");
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$output->writeln('Executing');
return 0;
}
}