docs
docs copied to clipboard
Update quick_start.rst
The existing command (vendor/bin/behat -V) didn't work for me (Windows). Changed it to something that worked.
Will you merge this or can I delete it?
Well, on Windows, the path separator is \ rather than /, so accessing the subfolder is vendor\bin\behat.
Adding php in front of vendor/bin/behat won't work on any system not supporting symlinks (hint: windows for instance) as composer would generate a proxy file then (which is not a PHP file). So @bocharsky-bw's request is wrong.
Ah, good to know! I didn't know about Composer proxy files, thanks @stof .
So nothing much we can do here. If you're on Windows, just use \ instead of / and call the same command. If you're on Unix (any system that supports symlinks) - keep in mind that you may need to add php in front of your command if you have permission problems, etc.