Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道,在作曲家无法为 Symfony 安装包的情况下,无论出于何种原因,从 github 下载包并将该包放在供应商库中就足够了?还是我需要告诉 Symfony 在 AppKernel 类中加载包?
因为,我尝试了这两种方法,但无论出于何种原因似乎仍然无法加载应用程序,我正在徘徊于剩下的事情上。
谢谢
如果你使用 composer 来管理你的依赖,你可以使用它生成的自动加载器。
// https://github.com/symfony/symfony-standard/blob/master/app/autoload.php#L9 $loader = require __DIR__.'/../vendor/autoload.php';
如果您手动安装依赖项,则自动加载器将不是最新的。您必须使用以下命令生成它:
composer dump-autoload