微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

phpstorm怎么安装ide-helper

本篇内容介绍了“PHPstorm怎么安装ide-helper”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

为了提高开发效率,也方便在model 中生成更多的属性方法,尝试下ide-helper

安装

composer require barryvdh/laravel-ide-helper

Using version ^2.6 for barryvdh/laravel-ide-helper
./composer.json has been updated
Loading composer repositories with package @R_909_4045@ion
Updating dependencies (including require-dev)
Package operations: 11 installs, 0 updates, 0 removals
  - Installing composer/xdebug-handler (1.3.2): Loading from cache
  - Installing composer/spdx-licenses (1.5.1): Loading from cache
  - Installing symfony/filesystem (v4.2.5): Loading from cache
  - Installing justinrainbow/json-schema (5.2.8): Loading from cache
  - Installing seld/phar-utils (1.0.1): Loading from cache
  - Installing seld/jsonlint (1.7.1): Loading from cache
  - Installing composer/semver (1.5.0): Loading from cache
  - Installing composer/ca-bundle (1.1.4): Loading from cache
  - Installing composer/composer (1.8.4): Loading from cache
  - Installing barryvdh/reflection-docblock (v2.0.6): Loading from cache
  - Installing barryvdh/laravel-ide-helper (v2.6.2): Loading from cache
barryvdh/reflection-docblock suggests installing dflydev/markdown (~1.0)
barryvdh/laravel-ide-helper suggests installing doctrine/dbal (Load @R_909_4045@ion from the database about models for PHPdocs (~2.3))
Writing lock file
Generating optimized autoload files

配置中加载(bootstrap/app.PHP)

 //ide helper
 $app->register(Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class);

自动生成

PHP artisan ide-helper:generate

报错

google 了下,应该是未安装这个扩展,安装

composer require league/flysystem

再执行 ,搞定

PHP artisan ide-helper:generate
A new helper file was written to _ide_helper.PHP

最好把生成的这些文件都放到git 忽略文件

_ide_helper.PHP
_ide_helper_models.PHP
.PHPstorm.Meta.PHP

参考:
https://laravelacademy.org/post/4202.html

https://github.com/barryvdh/laravel-ide-helper/issues/723

PHPstorm怎么安装ide-helper”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程之家网站,小编将为大家输出更多高质量的实用文章

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐