Increase phpunit versions
jmauerhan opened this issue · 3 comments
Is there a reason this is locked to phpunit 4.0.0 || 5.0.0, and not something like 5.*
? If there's something breaking in one of the later versions, I'd be happy to help fix it. I want to use this tool with more recent phpunit versions.
Is there a reason this is locked to phpunit 4.0.0 || 5.0.0, and not something like 5.* ?
You omitted the caret constrain. It's locked against ^4.0.0 || ^5.0.0, not 4.0.0 || 5.0.0.
I want to use this tool with more recent phpunit versions.
Which particular version doesn't work for you?
When I originally tried to use it with phpunit 5.4, I got a version constraint error. Something else I changed must have fixed it, because now it's working...
However, when I was looking into if it would work, I noticed your travis isn't building with 5.4, so that could be added :) Thanks for the time!