* Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Plugin; use Composer\Composer; use Composer\IO\IOInterface; /** * Commands Provider Interface * * @author Jérémy Derussé */ interface CommandsProviderInterface { /** * Retreives list of commands * * @return array */ public function getCommands(); }