feat : ide config

This commit is contained in:
2025-03-14 16:16:36 +08:00
parent 5bc1f0c12e
commit 4758aa598d
2 changed files with 12 additions and 0 deletions

View File

@@ -9,6 +9,9 @@ declare(strict_types=1);
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
use function Hyperf\Support\env;
return [
'generator' => [
'amqp' => [
@@ -41,4 +44,10 @@ return [
'namespace' => 'App\\Processes',
],
],
/**
* Supported IDEs: "sublime", "textmate", "cursor", "emacs", "macvim", "phpstorm", "idea",
* "vscode", "vscode-insiders", "vscode-remote", "vscode-insiders-remote",
* "atom", "nova", "netbeans", "xdebug"
*/
'ide' => env('DEVTOOL_IDE', ''),
];