Cody Phillips

Results 8 issues of Cody Phillips

Don't have time to fork and push right now, but before I forget... line 173 of /h2o/parser.php: From: ``` php self::$name = '/[a-zA-Z][a-zA-Z0-9-_]*(?:\.[a-zA-Z_0-9][a-zA-Z0-9_-]*)*/'; ``` To: ``` php self::$name = '/[a-zA-Z_][a-zA-Z0-9-_]*(?:\.[a-zA-Z_0-9][a-zA-Z0-9_-]*)*/';...

Assume the following: ``` php $arr = array( array('x' => 0), array('x' => 1), array('x' => 2), array('x' => 3), ); $b = array(1, 2, 3, 4); ``` ``` {%...

I suspect this is something to do with too many files... but isn't an issue for grunt-phplint using the same globbing pattner: _Gruntfile.js_ ``` js ... phpcs: { all: {...

It would be great if custom parameters were supported. That is, equivalent to something like: ``` phpunit -c /path/to/phpunit.xml --do-something-special ``` This allows the bootstrap file access to the "do-something-special"...

Uploads containing hundreds of files is excruciatingly slow. So it would be nice if we could specify the number of simultaneous transfers (e.g. FileZilla allows between 1 and 10). ```...

It doesn't appear that we can currently namespace our migrations. Here's why it would be good to have: 1. Prevents polluting global namespace. 2. Avoids collisions with other migrations a...

I'm thinking of adding callback support to the migration process. This would be especially useful in the API migration. **Why?** There's no feedback during migration processing. This can leave users...

Version 0.61 fails to automatically render source tree in Komodo Edit 6.1 when loading source code (tested with PHP, Javascript, HTML, XML). When switching between tabs the source tree for...