欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

Yii2 released

程序员文章站 2022-05-30 15:29:15
...

Yii2 终于released了。发现他的advanced的目录和我现在完全一致。哈哈。。。 不过在测试的时候遇到了这个问题: composer?install?? Loading?composer?repositories?with?package?information?? Installing?dependencies?(including?require-dev)?? Your?req

Yii2 终于released了。发现他的advanced的目录和我现在完全一致。哈哈。。。

不过在测试的时候遇到了这个问题:

    composer?install??
    Loading?composer?repositories?with?package?information??
    Installing?dependencies?(including?require-dev)??
    Your?requirements?could?not?be?resolved?to?an?installable?set?of?packages.??
    ??
    ??Problem?1??
    ????-?Installation?request?for?yiisoft/yii2?*?->?satisfiable?by?yiisoft/yii2[2.0.0].??
    ????-?yiisoft/yii2?2.0.0?requires?bower-asset/jquery?2.1.*@stable?|?1.11.*@stable?->?no?matching?package?found.??
    ??Problem?2??
    ????-?Installation?request?for?yiisoft/yii2-bootstrap?*?->?satisfiable?by?yiisoft/yii2-bootstrap[2.0.0].??
    ????-?yiisoft/yii2-bootstrap?2.0.0?requires?bower-asset/bootstrap?3.2.*?|?3.1.*?->?no?matching?package?found.??
    ??Problem?3??
    ????-?Installation?request?for?yiisoft/yii2-gii?*?->?satisfiable?by?yiisoft/yii2-gii[2.0.0].??
    ????-?yiisoft/yii2-gii?2.0.0?requires?bower-asset/typeahead.js?0.10.*?->?no?matching?package?found.??
    ??Problem?4??
    ????-?yiisoft/yii2?2.0.0?requires?bower-asset/jquery?2.1.*@stable?|?1.11.*@stable?->?no?matching?package?found.??
    ????-?yiisoft/yii2-faker?2.0.0?requires?yiisoft/yii2?*?->?satisfiable?by?yiisoft/yii2[2.0.0].??
    ????-?Installation?request?for?yiisoft/yii2-faker?*?->?satisfiable?by?yiisoft/yii2-faker[2.0.0].??
    ??
    Potential?causes:??
    ?-?A?typo?in?the?package?name??
    ?-?The?package?is?not?available?in?a?stable-enough?version?according?to?your?minimum-stability?setting??
    ???see??for?more?details.??
    ??
    Read??for?further?common?problems.??

这不是什么大问题,只是安装不上罢了。问题出来哪里呢?看了一下官方的issue,有对它的解释:https://github.com/composer/composer/issues/2873

毕竟,虽然yii2是stable了,但不是所有关联的项目都是stable了。把项目中的:"minimum-stability":"stable"改成 "minimum-stability":"dev"即可

于是:composer install

Loading composer repositories with package information

Installing dependencies (including require-dev)

- Installing yiisoft/yii2-composer (dev-master 73ad236)

Cloning 73ad236be1bf7cf4415559a4b592dd5b9cb4b288

-------EOF。