您的位置 首页 php

yii2安装为什么很慢

yii2安装为什么很慢?

其实yii2本身的安装是很快的,主要就是里面包含的js和前端框架是比较繁琐的,可以终止前端js的安装 这不会影响你的使用的.

修改fxp-asset为Asset Packagist

参考官方安装指南Yii advanced template installation提到:

It uses asset-packagist for managing bower and npm package dependencies through Composer. Also you can use asset-plugin, as in earlier versions, but it works slowly.

找到

"config": {    "process-timeout": 1800,    "fxp-asset":{        "installer-paths": {            "npm-asset-library": "vendor/npm",            "bower-asset-library": "vendor/bower"        }    }},"replace": {    "bower-asset/jquery": ">=1.11.0",    "bower-asset/inputmask": ">=3.2.0",    "bower-asset/punycode": ">=1.3.0",    "bower-asset/yii2-pjax": ">=2.0.0"}

修改为

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

修改config/main.php

'aliases' => [    '@bower' => '@vendor/bower-asset',    '@npm'   => '@vendor/npm-asset',],

相关教程推荐:yii框架

文章来源:智云一二三科技

文章标题:yii2安装为什么很慢

文章地址:https://www.zhihuclub.com/27939.shtml

关于作者: 智云科技

热门文章

网站地图