Results 22 comments of Bishop Bettini

The posted code uses `mt_rand`, which PHP's internal [implementation before 7.2](https://github.com/php/php-src/commit/fd07302024bc47082b13b32217147fd39d1e9e61) did not generate values with equal probability: it was weighted about 2% more on the ends and at mod...

Thanks, @passcod. With that info, we can probably eliminate issues with the Mersenne Twister implementation in the PHP engine. While it's a long shot to say it'll be reproducible, are...

Thanks for the report! I can confirm I have also seen this in the wild, for example: ``` { "method": "Doctrine\\DBAL\\Driver\\PDOConnection::__construct", "args": [ "mysql:host=127.0.0.1;dbname=foxcatdb;charset=UTF8;", "foxcatdb", "Just-another-password-test", [] ], "lineno": 44,...

It occurs to me that a more surgical approach might be similar to how GitHub Advanced Security scans repositories looking for secrets: it does so by knowing the shape of...

Only tried locally with PHP built-in and Apache. [Do these instructions help?](http://blog.bigdinosaur.org/vanilla-forum-on-nginx/)

I would want to see a `--prune ` option, which removes that package and all of its dependencies from the graph. Simultaneously, any packages affected by the pruning would have...

@clue I can put some cycles on this (though with no guaranteed delivery dates!). What do you think of the `--prune` API mentioned earlier? How about an approach like [PHP...

@P0rnflake, Isn't `--dev` equivalent to current behavior and `--no-dev` a convenient shortcut to the equivalent prunes (`--prune dev/dep1 --prune dev/dep2 ... --prune dev/depN`)? If so, then the CLI API and...

Hello! Thanks for asking, @chrillep. The ideal way would be for us to provide a Nova-specific service provider and a simple set of instructions for activating that provider. That would...