123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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
- */
- use function Hyperf\Support\env;
- return [
- // Supported IDEs: "sublime", "textmate", "emacs", "macvim", "phpstorm", "idea",
- // "vscode", "vscode-insiders", "vscode-remote", "vscode-insiders-remote",
- // "atom", "nova", "netbeans", "xdebug"
- 'ide' => env('DEVTOOL_IDE', ''),
- 'generator' => [
- 'amqp' => [
- 'consumer' => [
- 'namespace' => 'App\\Amqp\\Consumer',
- ],
- 'producer' => [
- 'namespace' => 'App\\Amqp\\Producer',
- ],
- ],
- 'aspect' => [
- 'namespace' => 'App\\Aspect',
- ],
- 'class' => [
- 'namespace' => 'App',
- ],
- 'command' => [
- 'namespace' => 'App\\Command',
- ],
- 'controller' => [
- 'namespace' => 'App\\Controller',
- ],
- 'job' => [
- 'namespace' => 'App\\Job',
- ],
- 'listener' => [
- 'namespace' => 'App\\Listener',
- ],
- 'middleware' => [
- 'namespace' => 'App\\Middleware',
- ],
- 'process' => [
- 'namespace' => 'App\\Process',
- ],
- 'request' => [
- 'namespace' => 'App\\Request',
- ],
- ],
- ];
|