我是Composer的新手,我已经使用了https://getcomposer.org/doc/05-repositories.md#subversion-options结构来创建使用Composer的示例.
Howerver,我在使用命令composer install时收到有关Composer和SVN的错误消息:
[InvalidArgumentException]
找不到驱动程序来处理VCS存储库http://myexamplesvn/MyCommon-1.0/ .....
这是我的设置:
"repositories": [
{
"type": "vcs",
"url": "http://myexamplesvn/MyCommon-1.0/"
}
],
"require": {
"my-common/my-common":"*"
}
Run Code Online (Sandbox Code Playgroud)
你能给我任何想法或建议吗?