How do you force PEAR to download alpha/beta dependencies automatically?

社会主义新天地 提交于 2019-12-08 03:54:59

问题


When installing a package from PEAR, if the package is in alpha or beta mode, you can add a suffix to the package name to install the appropriate version; for example, running

sudo pear install openid

fails, but

sudo pear install openid-alpha

works.

But how about dependencies? In the example above, the OpenID in PEAR depends on 4 other packages that are also in alpha/beta.

Is there a way to make PEAR load the alpha/beta dependencies without manually installing each one?


回答1:


pear config-set preferred_state alpha


来源:https://stackoverflow.com/questions/12017641/how-do-you-force-pear-to-download-alpha-beta-dependencies-automatically

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