parent
eb547ef962
commit
bb11cec5c7
@ -0,0 +1,25 @@ |
||||
<?php |
||||
|
||||
/** |
||||
* SPDX-License-Identifier: EUPL-1.2 |
||||
* Authors: see /README.md |
||||
*/ |
||||
|
||||
namespace Seacms\Command; |
||||
|
||||
use Composer\Plugin\Capability\CommandProvider as CommandProviderCapability; |
||||
use Seacms\Command\Command; |
||||
|
||||
/** |
||||
* Provide list of commands |
||||
*/ |
||||
|
||||
class CommandProvider implements CommandProviderCapability |
||||
{ |
||||
public function getCommands() |
||||
{ |
||||
return [ |
||||
new Command() |
||||
]; |
||||
} |
||||
} |
Loading…
Reference in new issue