for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SilverStripe\ModuleRatingsPlugin;
use Composer\Command\BaseCommand;
use Composer\Plugin\Capability\CommandProvider;
use SilverStripe\ModuleRatingsPlugin\Command\RateModuleCommand;
class RatingsCommandProvider implements CommandProvider
{
/**
* Retreives an array of commands
*
* @return BaseCommand[]
*/
public function getCommands()
return [
new RateModuleCommand(),
];
}