Alex Standiford

Results 27 issues of Alex Standiford

Hi Chris, thank you for your work on this. When I run: `docker-compose -f docker-compose.phpunit.yml run --rm wordpress_phpunit phpunit` I get this error: ``` Error response from daemon: OCI runtime...

A disadvantage to using Composer at the plugin level is if multiple plugins are running the same dependency, it will load in each of those versions separately. Of course, this...

It would be _really_ useful if it was possible to register different query processors into the `Query` class, similar to the `Date` class that exists now. This would allow plugin...

type-feature
component-meta
component-date
component-compare
component-query

Currently, Berlin does not automatically unserialize/serialize array data when it goes in, or comes out of the database. This surprised me as this is a common scenario. In fact, it...

There are many situations where it's practical to create, or update many records at one time, using the same values. Currently, the only way to-do this with Berlin is by...

It would be nice if, after `is_success()` ran, if an action would fire. This would allow plugins to capture database events, and potentially log when something goes wrong. It would...

type-request

Fixes #10 This makes it possible to pass an asterisk in the `$cols` argument, and fetch all fields for the current table. This isn't a true 1:1 representation of `SELECT...

If we truly want to make BerlinDB compatible with systems outside of WordPress, it may be prudent to make a change to how `Base::get_db()` works. Not all systems utilize a...

One problem with the method in-which inline instance creation works, is most IDEs have no way to know how to provide code hints for the arguments passed into the constructor....