1234567891011121314151617181920212223242526272829 |
- <?php
- declare(strict_types=1);
- return [
- 'consumers' => [
- [
-
- 'name' => 'YourServiceName',
-
- 'registry' => [
- 'protocol' => 'consul',
- 'address' => 'Enter the address of service registry',
- ],
-
- 'nodes' => [
-
-
- ],
- ],
- ],
- ];
|