jschaedl / Iban

[Deprecated] Validating and generating international :bank: bank account numbers (IBAN)
MIT License
61 stars 25 forks source link

composer install fails #9

Closed jaltek closed 10 years ago

jaltek commented 10 years ago

Hi,

the composer installation fails if you use stable for the minimum-stability (which is the default).

Problem 1
    - Installation request for jschaedl/iban v1.1 -> satisfiable by jschaedl/iban[v1.1].
    - jschaedl/iban v1.1 requires jschaedl/bav dev-master -> no matching package found.
jschaedl commented 10 years ago

I think this composer problem is the same as described in https://github.com/composer/composer/issues/1478 . I have made a stable release for jschaedl/bav now and this fixed the problem. Please try again with the new jschaedl/iban version.

Here is a example composer.json:

{
    "name": "jschaedl/ibanintegrationtest",
    "type": "service",
    "require": {
        "jschaedl/iban": "v1.1.2"
    }
}
jaltek commented 10 years ago

Perfect. Works like a charm ;)

Thx @jschaedl