link0 / bunq

API client in PHP for bunq
MIT License
8 stars 13 forks source link

Foutmelding bij composer #9

Closed Novotix closed 7 years ago

Novotix commented 7 years ago

Hi Dennis,

We hadden via de Bunq Together pagina al een berichtje gestuurd n.a.v. je geposte library. Alleen als we de library proberen te laden in composer krijgen we een foutmelding, zie onderstaand:

[InvalidArgumentException] Could not find package link0/bunq@dev-master at any version for your minimum-stability (stable). Check the package spelling or your minimum-stability

Wat doen we verkeerd?

Groet, Joeri

annejan commented 7 years ago

De foutmelding vertelt dit je al: for your minimum-stability (stable).

Verlaag je gewenste minimum-stability: "minimum-stability": "dev"

dennisdegreef commented 7 years ago

If you put the dependency in composer.json hardcoded, it will work.

I am working to release a 'stable' version soon(tm). Be aware though, that currently I don't hold much value to backwards compatability until a stable version is released. All help by testing, creating issues, submitting pull requests is very welcome ofcourse!

{
  "require": {
    "link0/bunq": "dev-master"
  }
}
holtkamp commented 7 years ago

Would it be an idea to tag a 0.1.0 (or even a 0.0.1) for the time being? This way at least interested people do not have to "rely" on a dev-master dependency which might change at any time?