ticketevolution / ticketevolution-php

A PHP client for the Ticket Evolution web services.
BSD 3-Clause "New" or "Revised" License
22 stars 13 forks source link

Older version installing #177

Closed krishna220414 closed 4 months ago

krishna220414 commented 4 months ago

I am using laravel version 10.48 I have just setup a new laravel project and when i am running this command "composer require ticketevolution/ticketevolution-php" the ticketevolution version 2.2.2 is installing Screenshot 2024-07-02 181231 i dont know why this is happening why older version is installing in which there is no file of c;lient in it so how can i use this use TicketEvolution\Client as TEvoClient; when the file is not present please resolve my issue

jwcobb commented 4 months ago

Quoting from https://getcomposer.org/doc/articles/versions.md#caret-version-range-

The ^ operator behaves very similarly, but it sticks closer to semantic versioning, and will always allow non-breaking updates. For example ^1.2.3 is equivalent to >=1.2.3 <2.0.0 as none of the releases until 2.0 should break backwards compatibility.

Your Composer settings are constraining you to the equivalent of >=2.2.0 <3.0.0.