hoaproject / Console

The Hoa\Console library.
https://hoa-project.net/
366 stars 32 forks source link

Can not install via composer? #26

Closed stevleibelt closed 10 years ago

stevleibelt commented 10 years ago

Hey there, maybe I'm totaly stupid, but I can not install hoa/console via composer. I tried the following plain composer.json files.

{
    "minimum-stability": "dev",
    "require": {
        "hoa/console": "dev-master"
    }   
}

and

{
    "minimum-stability": "dev",
    "require": {
        "hoa/console": "1.14.09.16"
    }   
}

and

{
    "require": {
        "hoa/console": "1.14.09.16"
    }   
}

and all are resulting in the same composer error output.

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

  Problem 1
    - Can only install one of: hoa/core[dev-master, 1.14.09.16].
    - hoa/string 1.14.09.16 requires hoa/core dev-master -> satisfiable by hoa/core[dev-master].
    - hoa/console dev-master requires hoa/core ~1.0 -> satisfiable by hoa/core[1.14.09.16].
    - hoa/console dev-master requires hoa/string ~1.0 -> satisfiable by hoa/string[1.14.09.16].
    - Installation request for hoa/console dev-master -> satisfiable by hoa/console[dev-master].

I'm sorry when I'm opening an issue which is none, but I've no idea what I'm doing wronge here :-(.

Hywan commented 10 years ago

Yup, I failed yesterday night. I am fixing it right now!

Hywan commented 10 years ago

Fixed. See https://github.com/hoaproject/Console#installation.

stevleibelt commented 10 years ago

thanks in advance :+1: