matyhtf / webim

使用PHP+Swoole实现的网页即时聊天工具
1.78k stars 653 forks source link

composer install 执行报错 #42

Open CleverBilly opened 6 years ago

CleverBilly commented 6 years ago

oading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be resolved to an installable set of packages.

Problem 1

littlestarsx commented 6 years ago

Upgrade PHP version

610648738 commented 5 years ago

升级PHP版本 升级到什么版本才行。

jianhuisu commented 5 years ago

上面报错信息的意思是 composer.json 里配置的版本在远程仓库中没有找到 , 你修改一下 composer.json 即可 { "require": { "matyhtf/swoole_framework": "dev-master" } }

修改为你本机swoole扩展对应的版本

{ "require": { "matyhtf/swoole_framework": "2.0.0" } }