#Zegnat!tell gRegorLove any thoughts on merging the test-suite PR and rebasing the 0.5.0 milestones PRs on that first? Might make it easier to review those backcompat fixes?
#ZegnatI just didn’t think PHP_CS would be neccessary, isn’t there a stand-alone compatibility checker, is my question
#GWGZegnat: Something should be checking, so I added a compatibility checker.
#ZegnatI love the automated checking, just surprised to see 3 dependencies for it
#GWGZegnat: We may wish to add more rules in future. Also, dev dependencies
#ZegnatI wouldn’t mind getting a code style check in there too, so I do not mind, was just surprising :)
#ZegnatThis is more something that may be worth changing: you do not need to define `./vendor/bin/` within scripts in the composer.json file. Composer will always look in that folder first, so just writing `phpunit` will default to a local installation and not the global one. (See https://getcomposer.org/doc/articles/scripts.md#writing-custom-commands)
#GWGZegnat, good to know, either way, I thought adding a script was easier than always remembering
#ZegnatAdding script is great! `composer test` is always a nice one that we may consider making available. I am a huge fan of not depending on globally installed tooling because you cannot guarantee versions that way.
#GWGI have been on a testing improvement kick of late.
#GWGBut I am thinking of adding docblock checking to my code to force me not to forget to do it
#ZegnatInteresting. Yeah, I am bad at docblocks too. I do these days include code style checking on mostly everything