You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
./composer.json is valid, but with a few warnings
See https://getcomposer.org/doc/04-schema.md for details on the schema
require.catfan/medoo : unbound version constraints (>=1.5) should be avoided
composer.json内容
原因
在包中引用的medoo版本号写的不对,
>=1.5
表示对1.5版本以后的所有版本都兼容,但是在一般情况下来说,如果包有大版本更新变化,很有可能无法兼容当前的内容,所以这种写法不被推荐。解决方法
把版本号中的
>=
改成~
即可。~
表示在大版本范围内往上兼容,但是对大版本不兼容。比如
~1.5
可以兼容 1.6,1.7版本,但是不兼容 2.0。The text was updated successfully, but these errors were encountered: