for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* YOURLS Composer Installer
*/
namespace YOURLS\ComposerInstaller;
use Composer\Plugin\Capability\CommandProvider as CommandProviderCapability;
* List all custom commands
*
* @package YOURLS\ComposerInstaller
* @author Ozh <[email protected]>
* @link https://github.com/yourls/composer-installer/
* @license MIT
class CommandProvider implements CommandProviderCapability
{
* Register custom composer commands
public function getCommands()
return [
new Commands\CommandAddPlugin(),
new Commands\CommandRemovePlugin(),
];
}