Alexey Kopytko
Alexey Kopytko
Interestingly I can no longer reproduce the issue if I enable JIT: ``` php -dpcre.jit=1 -dauto_prepend_file=vendor/autoload.php -dpcre.recursion_limit=10 testing.php ``` Compare with: ``` $ php -dpcre.jit=0 -dauto_prepend_file=vendor/autoload.php -dpcre.recursion_limit=10 testing.php PHP Notice:...
I found that converter also breaks down on long unquoted attributes such as `` Quoting the attribute such as in `` fixes the problem.
Care to provide an example for the issue? Thanks.
This looks very similar to [this issue](https://github.com/kalimatas/php-liquid/issues/22). I'll look into it. It is hard to tell why there's a need to pass $_SERVER in the context, but I guess we...
I believe they're using [only the first element of that array](https://github.com/kalimatas/php-liquid/commit/4bc5ae5fd1ece0966d1609cd9dc20bcb303750d6#diff-273086c94f14fb56104e517c3707fe0dR57), but later I'll see if anything breaks if I remove `$_SERVER` from there.
In PHP-speak 0 or 1 is same as false or true.
Doesn't seem like it.
Travis CI build fails because they dropped PHP 5.3 support. They don't have it by default anymore.
There's a virtual filesystem in [liquid/liquid in packagist](https://packagist.org/packages/liquid/liquid). This is the package you will install with composer. Used like this: ```php class MyFileSystem extends Liquid\FileSystem\Virtual { public static function fromArray($array)...
Steps to reproduce: ``` cd /tmp git clone --depth=1 https://github.com/humbug/box cd box/ composer install ./vendor/phpunit/phpunit/phpunit ``` Expected output: no error. Actual output: ``` PHP Fatal error: Uncaught Error: Class 'PHPUnit\Framework\Error\Warning'...