供应商:发布 - 标签 [] 没有要发布的内容 - 仅在生产服务器上

Vendor:Publish - Nothing to publish for tag [] - Only on production server(供应商:发布 - 标签 [] 没有要发布的内容 - 仅在生产服务器上)
本文介绍了供应商:发布 - 标签 [] 没有要发布的内容 - 仅在生产服务器上的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用第三方库,在本地,我使用他们提供的步骤安装了所有内容.

I am using a third party library and locally, I installed everything using the steps that they provided.

  1. 我在包上运行了 composer require 并运行了更新.这安装到 vendor 文件夹中.
  2. 然后我将路径添加到 config/app 中的 provider 中,并且还作为别名..
  3. 我运行 php artisan vendor:publish --provider="SpatieLaravelAnalyticsLaravelAnalyticsServiceProvider" 配置文件创建成功,没有任何问题.
  4. 然后我上传到生产环境并继续得到 Class 'LaravelAnalytics' not found,我似乎无法找出问题所在..

  1. I ran composer require on the package and ran an update. This installed into the vendor folder.
  2. I then added the path into the provider in config/app and also as an aliases..
  3. I ran php artisan vendor:publish --provider="SpatieLaravelAnalyticsLaravelAnalyticsServiceProvider" the config file created successfully and I had no problems.
  4. I then uploaded to the production environment and kept on getting Class 'LaravelAnalytics' not found and I can't seem to figure out the problem..

我运行 php artisan vendor:publish --provider="SpatieLaravelAnalyticsLaravelAnalyticsServiceProvider"

但我不断收到:Nothing to publish for tag []. 这让我认为这可能是问题所在,因为包没有发布.

But I kept on getting: Nothing to publish for tag []. which has lead me to thinking that this could be the problem since the package is not published.

我的本​​地环境是 Ubuntu,我的生产环境是 CentOS.如果我尝试 CD 到我的生产环境中的那个目录,它说找不到.

My local environment is Ubuntu and my production Environment is CentOS.. If I try to CD into that directory on my production environment it says cannot find.

因此,这可能是一个区分大小写的问题吗?我如何添加未获取此包的提供商?

Could this therefore be a problem with the case sensitive on how I am adding my providers that is not picking up this package?

推荐答案

你在使用缓存的配置文件吗?尝试使用

are you using cached config files ? try using

php artisan config:clear

然后重试

php artisan vendor:publish

这篇关于供应商:发布 - 标签 [] 没有要发布的内容 - 仅在生产服务器上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)