无法通过cmd获得错误来自我更新我的zf2应用程序
[ComposerDownloaderFilesystemException]
Filesystem exception:
Composer update failed:
The "D:xampphtdocsmeasureupcomposer.phar" file could not be written
命令用法:
php composer.phar self-update
您正在尝试更新编写器可执行文件。在这个命令行中,您对zend框架不做任何操作。
更新Composer失败,因为您正在使用的用户帐户对需要为更新写入的文件没有写权限。
如果您不想更新Composer,但要更新应用程序的依赖项,请运行php composer.phar update
。注意,这不是self-update
。