我需要将TCPDF作为第三方库集成到 Symfony 2.1 中。
我在 composer.json 中尝试过
"repositories": [
{
"type": "vcs",
"url": "git://tcpdf.git.sourceforge.net/gitroot/tcpdf/tcpdf"
}
],
"require": {
"tcpdf/tcpdf":"*"
},
但它给出了一个错误The requested package tcpdf * could not be found.
如何在 composer.json 文件中正确提供第三方库?
TCPDF库不遵循命名空间,那么我们如何在我们的包中访问这个库呢?