Chad Sikorra
Chad Sikorra
This makes some changes so that it works with the Switch SNES controller. The SNES controller lacks some of the features of the joycons / pro controller, so I had...
All versions of PHP up to 7.4 are now EOL, and have been for some time: https://www.php.net/supported-versions.php Even sometime this year PHP 7.4 will stop getting security updates. This library...
I would like to release a v1.0.0 version of this library, as it has been getting many 0.x.0 releases and I haven't really defined what a 1.0.0 type of release...
I'm not sure why this happens, but I have seen it occur sporadically on Windows builds in AppVeyor. I have been unable to reproduce it yet. Perhaps the condition is...
When creating LDAP objects it's possible to reference other attribute values to create an attribute value based off it. For instance, you could create an object like so: ```php $ldap->createLdapObject('user')...
Currently there is no way to modify certain options when you persist objects. Some options you might want to be specific to certain operations you are doing, such as: *...
Currently the schema is parsed and converted into separate LdapObjectSchema objects and retrieved via a factory. This is not ideal. It also makes it very hard to use the schema...
Instead of having Guzzle and Ratchet as hard dependencies, should there instead be other interfaces used so we can use other HTTP clients or websocket clients? For HTTP clients this...
This library should have some sort of general SNMP server component for replying to SNMP client requests. There is already a Trap Sink component capable of handling incoming client requests....
I should implement CSRF support in the Guard. To do this I will need to: - Add `csrf_parameter` to the config, default to: `_csrf_token` - Add `csrf_token_generator` to the config,...