溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Yii2 composer安裝慢怎么辦

發(fā)布時(shí)間:2020-12-30 10:47:10 來源:億速云 閱讀:181 作者:小新 欄目:軟件技術(shù)

小編給大家分享一下Yii2 composer安裝慢怎么辦,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

在yii中引用php的開源項(xiàng)目用composer已經(jīng)很方便了,引用前端的開源項(xiàng)目也有composer的插件fxp-asset(https://github.com/fxpio/composer-asset-plugin)和Asset Packagist(https://github.com/hiqdev/asset-packagist)

以前yii默認(rèn)采用前者,現(xiàn)在新的yii2模版默認(rèn)采用后者,后者的作者就很厲害了,貌似是個(gè)重度yii用戶,看來是被fxp-asset的執(zhí)行緩慢給弄急眼了,所以自己搞了個(gè)更新的方法。

言歸正傳:

所以更快速的安裝方式就是 Asset Packagist https://asset-packagist.org

其實(shí)就是2步:

在config中關(guān)閉fxp-asset的調(diào)用

在源列表中加入asset-packagist庫的配置

"config": {
        "process-timeout": 1800,
        "fxp-asset": {
            "enabled": false 
        }
    },
    
 "repositories": [
    {
        "type": "composer",
        "url": "https://asset-packagist.org"
    }
]

如果composer的源采用阿里云鏡像,完整寫法如下:

"repositories": {
        "0": {
            "type": "composer",
            "url": "https://asset-packagist.org"
        },
        "packagist": {
            "type": "composer",
            "url": "https://mirrors.aliyun.com/composer/"
        }
    }

需要注意的是,yii在yii\base\Application 中定義vendor路徑的時(shí)候也定義了bower和npm路徑:

    /**
     * Sets the directory that stores vendor files.
     * @param string $path the directory that stores vendor files.
     */
    public function setVendorPath($path)
    {
        $this->_vendorPath = Yii::getAlias($path);
        Yii::setAlias('@vendor', $this->_vendorPath);
        Yii::setAlias('@bower', $this->_vendorPath . DIRECTORY_SEPARATOR . 'bower');
        Yii::setAlias('@npm', $this->_vendorPath . DIRECTORY_SEPARATOR . 'npm');
    }

這就和asset-packagist的默認(rèn)安裝路徑有了差別解決辦法:

重新定義yii中的bower和npm路徑

    $config = [
        ...
        'aliases' => [
            '@bower' => '@vendor/bower-asset',
            '@npm'   => '@vendor/npm-asset',
        ],
        ...
    ];

看完了這篇文章,相信你對(duì)“Yii2 composer安裝慢怎么辦”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI