Cody Phillips

Results 19 comments of Cody Phillips

Thanks superdaigo. The example you provided works, however it is extremely inefficient (O(n^2): nested loop, can't break after item found). Here's what I'm looking for in PHP for comparison: ```...

Thanks again superdaigo. You solution in #1 is exactly what I did as a work around. I'm still concerned with it, because if you analyze the run time (PHP +...

CURL_SSLVERSION_TLSv1 is not defined until PHP 5.5. This really should be fixed since it is bug for anything < PHP 5.5 (lib requirement is PHP 5.2+).

I've got a number of projects relying on pdftk to programmatically fill out user supplied PDF forms with database driven data. It's actually the only reason I use pdftk, and...

Yes, FDF is a common format. Until recently it was the **only** format that could be used to fill forms for PDF documents. [More info here](http://www.verypdf.com/pdfform/fdf.htm), [official spec here](http://partners.adobe.com/public/developer/en/pdf/PDFReference16.pdf) (starts...

I can agree with your use cases for typical apps, but what actually brought this up for me is a project that has user installable plugins which have their own...

Here's what I'd like to see: 1. Set default namespace in phpmig config (default to '\' for global namespace) 2. If phpmig.migrations_path is '/migrations/', then every `.php` migration file in...

See #66 for decoupling the migration logic from the console. Also note that the logic would need to be replaced in the [Api](https://github.com/davedevelopment/phpmig/tree/master/src/Phpmig/Api) as well.

So the issue is quite obviously grunt-phpcs' reliance on globbing. The question is, why require globbing when phpcs can take a list of directories on the command line. This plugin...

I'm not so sure it's a dupe, given that ['d' is a specific command](https://phpunit.de/manual/current/en/textui.html#textui.clioptions) and [was added recently](https://github.com/SaschaGalley/grunt-phpunit/blob/master/tasks/lib/builder.js#line-61) to satisfy #25.