gvanto
gvanto

Reputation: 2083

Can't get specific version of composer package

I am trying to get latest version of calcinai/xero-php (just doing composer require as per their readme installs v ^1.7)

When I run

composer require "calcinai/xero-php":"^2.0.4"

The incorrect version of this package is downloaded (composer logs below + vendor code being installed is not what is in master repos, currently at v2.0.4).

enter image description here

How do I get v2.0.4/latest code that is on master (using composer)?

Upvotes: 0

Views: 85

Answers (1)

Nico Haase
Nico Haase

Reputation: 12130

If you want to require a specific version, and not any other, skip the caret. Installing exactly v2.0.4 of that package works using

composer require "calcinai/xero-php":"2.0.4"

Upvotes: 1

Related Questions