Yii2.0.12升级到PHP7.2可用版本

先说一下Yii框架PHP运行环境的状况。前端

Yii2.0.12版本使用\yii\base\Object类,Object做为类名PHP7.2报错。jquery

PHP7.2的Yii2最小可用版本为2.0.13。git

提供若干升级的方法。github

  1. 项目使用Composer管理bowernpm前端资源。

安装最新版composer-asset-pluginnpm

composer global require "fxp/composer-asset-plugin"

指定类库更新json

composer update yiisoft/yii2 yiisoft/yii2-composer bower-asset/jquery.inputmask

Composer记录以下api

Loading composer repositories with package information
Updating dependencies (including require-dev)
Reading bower.json of bower-asset/yii2-pjax (2.0.7.1)GitHub API limit (60 calls/hr) is exhausted, could not fetch https://api.github.com/repos/yiisoft/jquery-pjax/commits/aef7b953107264f00234902a3880eb50dafc48be. Create a GitHub OAuth token to go over the API rate limit. You can also wait until 2019-02-15 18:54:52 for the rate limit to reset.

Head to https://github.com/settings/tokens/new?scopes=repo&description=Composer+on+bw-hz-dev-v14+2019-02-15+1755
to retrieve a token. It will be stored in "/data/home/hanguangchao/.config/composer/auth.json" for future use by Composer.
Token (hidden):
Package operations: 1 install, 2 updates, 1 removal
  - Removing bower-asset/jquery.inputmask (3.3.7)
  - Updating yiisoft/yii2-composer (2.0.5 => 2.0.7): Loading from cache
  - Installing bower-asset/inputmask (3.3.11): Downloading (100%)
  - Updating yiisoft/yii2 (2.0.12 => 2.0.16): Loading from cache
Writing lock file
Generating autoload files
  1. 项目配置不经过Composer管理bowernpm的资源

若是你的Yii2作接口应用、微框架,不须要JS,CSS,或自行管理前端资源,在安装更新的时候能够移除对bowernpm的资源的依赖。yii2

修改composer.jsoncomposer

"require" : {
      "yiisoft/yii2": "2.0.16"
  },
  "replace": {
      "bower-asset/inputmask": ">=3.2.0"
  }

按需升级框架

composer update yiisoft/yii2 yiisoft/yii2-composer bower-asset/jquery.inputmask

若是有报错,通常都是前端资源依赖问题,移除便可。

相关文章
相关标签/搜索