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.
我因为 Symfony2 而认识 Composer,但现在我想将它用作独立的部分。我按照其文档中的说明进行操作,但不知道如何将本地库设置为依赖项,如何加载它?
换句话说,如何使用 Composer 加载本地存储库而不是引用远程存储库?
我刚刚找到了解决方案!我做的一切都很好,但是输入了我想自动加载的依赖项的命名空间。所以这个问题的答案是
curl -s https://getcomposer.org/installer | php
创建了一个文件composer.json,然后将以下内容放入其中:
composer.json
{ "autoload": { "psr-0": { "MyNamespace":"src/" } } }
跑:php composer.phar install
php composer.phar install
../vendor/autoload.php