tlikai / yii-restful

Yii RESTful URL Manager

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

composer demands dev-master

idanhen opened this issue · comments

I get :
Your requirements could not be resolved to an installable set of packages.

Problem 1
- Can only install one of: yiisoft/yii[dev-master, 1.1.14].
- Can only install one of: yiisoft/yii[dev-master, 1.1.14].
- likai/yii-restful dev-master requires yiisoft/yii dev-master -> satisfiable by yiisoft/yii[dev-master].
- Installation request for likai/yii-restful dev-master -> satisfiable by likai/yii-restful[dev-master].
- Installation request for yiisoft/yii 1.1.14 -> satisfiable by yiisoft/yii[1.1.14].

with the following composer.json:

"require": {
    "php": ">=5.3.0",
    "yiisoft/yii": "1.1.14",
    "mashape/unirest-php": "dev-master",
    "likai/yii-restful": "dev-master"
},

this composer.json fixed it, but i want a specific yii version :

"require": {
    "php": ">=5.3.0",
    "yiisoft/yii": "dev-master",
    "mashape/unirest-php": "dev-master",
    "likai/yii-restful": "dev-master"
},

Thank you, fixed