PHP Fatal error:  Cannot use ‘Object‘ as class name as it is reserved

老子叫甜甜 提交于 2020-03-02 02:53:14

这个错误是yii2框架的错误了。也就是说不能使用Object作为类名。

解决方法

1、composer install

2、composer global require "fxp/composer-asset-plugin:^1.4.1"

3、compser update

[root@localhost tmp]# composer update

Loading composer repositories with package information

Updating dependencies (including require-dev)

Could not fetch https://api.github.com/repos/jquery/jquery-dist, please create a GitHub OAuth token to go over the API rate limit

Head to https://github.com/settings/tokens/new?scopes=repo&description=Composer+on+localhost.localdomain+2018-02-22+1945

to retrieve a token. It will be stored in "/root/.composer/auth.json" for future use by Composer.

Token (hidden):

浏览器打开URL “https://github.com/settings/tokens/new?scopes=repo&description=Composer+on+localhost.localdomain+2018-02-22+1945”生成token(需要用到github账号),在命令行输入即可。

4、composer update

END,等着升级成功吧

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!