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

18
src/CommandProvider.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
namespace NoccyLabs\Composer\PackagePlugin;
use Composer\Plugin\Capability\CommandProvider as CommandProviderCapability;
class CommandProvider implements CommandProviderCapability
{
public function getCommands()
{
return [
new Command\PackageCommand(),
new Command\PackageLoginCommand(),
new Command\PackagePublishCommand(),
new Command\PackageUnpublishCommand(),
];
}
}