12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- namespace Hyperf\Watcher;
- use Hyperf\Watcher\Command\WatchCommand;
- class ConfigProvider
- {
- public function __invoke(): array
- {
- return [
- 'dependencies' => [
- ],
- 'commands' => [
- WatchCommand::class,
- ],
- 'publish' => [
- [
- 'id' => 'config',
- 'description' => 'The config for watcher.',
- 'source' => __DIR__ . '/../publish/watcher.php',
- 'destination' => BASE_PATH . '/.watcher.php',
- ],
- ],
- ];
- }
- }
|