Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from kukulili-labs/master
Add symfony 2.3 support
- Loading branch information
0d5a317
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought ~2.0 meant >=2.0,<3.0? In other words, any version from 2.0 and above (including 2.3), but not a major bump to 3.x. Maybe I'm misreading the composer docs.
At any rate, this change means I can't use the bundle in 2.4.
0d5a317
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed,
~2.0
is better.~2.0
means>=2.0,<3.0
, but~2.0.1
means>=2.0.1,<2.1
so I guess this is were the confusion happens.This change should be reverted.