Initial commit

This commit is contained in:
2025-12-28 02:28:35 +01:00
commit 57582a2e53
11 changed files with 2855 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?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;
}
}