Steve Pavarno
Steve Pavarno
Should I make a pull request for the analysis part? Im waiting to see if my PR for #188 will be accepted
@grantgordon really appreciated. I have users with electricity for only a few hours a day, and _really_ slow internet. Every byte we can save them is repaid in chocolate and...
If we change https://github.com/ircmaxell/RandomLib/blob/master/lib/RandomLib/AbstractMcryptMixer.php#L67 to ```php return version_compare(PHP_VERSION, '7.1') < 0 && extension_loaded('mcrypt'); ``` would that fix it?
does #9 answer your question? we have tokens that drift away from standard time (because they are cheap physical devices with an internal clock that has no way to sync...
Hi. Any progress on this? I have been using my own library for this for many years https://github.com/pavarnos/schema which gives me a nice declarative way of describing the database and...
was thinking more of something like DBAL schema comparator http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/schema-representation.html where you can take a parsed schema from the database plus an ideal schema from code and return SQL to...
... what i like about the abstract (code) method of declaration is that its easy to create portions of a mock database for testing eg call $customerOrderRepository->getSchema()->toSqlite() to create an...
Yes, if i was going to build that again I'd probably base it on Aura components but steal a lot of ideas from DBAL to mix in with what I...