2016-01-08 76 views
0

人誰可以幫我解決這個問題.....之後我在yii2應用更新我的作曲家我得到這個錯誤.. enter image description hereYii2得到錯誤信息

也是我得到的錯誤訊息話題是:

* @return array the path directory and the URL that the asset is published as. 
* @throws InvalidParamException if the asset to be published does not exist. 
*/ 
protected function publishDirectory($src, $options) 
{ 
    $dir = $this->hash($src); 
    $dstDir = $this->basePath . DIRECTORY_SEPARATOR . $dir; 
    if ($this->linkAssets) { 
     if (!is_dir($dstDir)) { 
      symlink($src, $dstDir); 
     } 
    } elseif (!empty($options['forceCopy']) || ($this->forceCopy && !isset($options['forceCopy'])) || !is_dir($dstDir)) { 
     $opts = array_merge(
      $options, 
      [ 
       'dirMode' => $this->dirMode, 
       'fileMode' => $this->fileMode, 
      ] 
     ); 

我的第二個問題後,我跑作曲家診斷...我得到的消息: 檢查composer.json:失敗.. 實際上是什麼這個問題...

回答