Rework commands

This commit is contained in:
2025-12-28 02:30:24 +01:00
parent 57582a2e53
commit 078f2bf6a7
2 changed files with 4 additions and 3 deletions

View File

@@ -0,0 +1,25 @@
<?php
namespace NoccyLabs\Composer\PackagePlugin\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Composer\Command\BaseCommand;
class PackageBuildCommand extends BaseCommand
{
protected function configure(): void
{
$this
->setName('package:build')
->setAliases([ "package" ])
->setDescription("Package the library into a zipball, or publish directly");
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$output->writeln('Executing');
return 0;
}
}