thephpleague / tactician-bundle

Bundle to integrate Tactician with Symfony projects
MIT License
245 stars 43 forks source link

Also allow tactician-logger 0.11 #129

Closed winkbrace closed 2 years ago

winkbrace commented 2 years ago

Below 1.0 versions work differently in composer version requirements unfortunately, so it has to be explicitly allowed

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. For pre-1.0 versions it also acts with safety in mind and treats ^0.3 as >=0.3.0 <0.4.0

rosstuck commented 2 years ago

Tagged in v1.3.2