> 개발 도구 > composer > 본문

작곡가.json 파일을 사용하는 방법

藏色散人
풀어 주다: 2019-08-23 11:05:52
원래의
7116명이 탐색했습니다.

작곡가.json 파일을 사용하는 방법

composer.json文件怎么使用?laravel 如何使用composer自动加载自己定义的文件夹?

一. 问题

当我们 clone下来一个laravel框架,接着就开始我们表演,但是我们根据业务需求需要创建一些自定义的文件夹,那么我们该如何加载他们呢,如何避免这类错误[Symfony\\Component\\Debug\\Exception\\FatalThrowableError] Class 'tools\\alyduanxin\\api\_demo\\SmsDemo' not found

二:分三步来解决这个问题

在laravel 中项目根目录下创建自己的文件夹,例如我在项目根目录下创建了一个tools文件夹。

在项目文件夹的根目录下找到composer.json文件,在autoload里添加psr-4节点

"psr-4": {
            "tools\\": "tools/"
        }
로그인 후 복사

接着执行

composer dump-autoload -o
로그인 후 복사

至此我们就加载成功啦

三. 解释一下 composer dump-autoload 这条命令

下面是composer官方文档中关于dump-autoload命令的解释:

dump-autoload
로그인 후 복사
If you need to update the autoloader(类加载器) because of new classes in a classmap package for example, you can use "dump-autoload" to do that without having to go through an install or update.
Additionally, it can dump an optimized(优化) autoloader that converts(转化) PSR-0/4 packages into classmap ones for performance(性能) reasons. In large applications with many classes, the autoloader can take up a substantial portion of every request's time. Using classmaps for everything is less convenient in development, but using this option you can still use PSR-0/4 for convenience and classmaps for performance.
Options:
--no-scripts: Skips the execution of all scripts defined in composer.json file.
--optimize (-o): Convert PSR-0/4 autoloading to classmap to get a faster autoloader. This is recommended especially for production, but can take a bit of time to run so it is currently not done by default.
--classmap-authoritative (-a): Autoload classes from the classmap only. Implicitly enables --optimize.
--apcu: Use APCu to cache found/not-found classes.
--no-dev: Disables autoload-dev rules.
로그인 후 복사

其中官方推荐的参数是 -o,即 composer dump-autoload -o 

这个命令可以将PSR-0/4自动加载成classmap来获取一个更快速的类加载器,推荐生产环境使用,但是,可能需要一点时间来运行,因此目前不是默认。

更多composer技术文章,请访问composer使用教程栏目!

위 내용은 작곡가.json 파일을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!