Jay Klehr
Jay Klehr
Yes, good point, this was on a linux OS.
Sounds like you didn't install the dependencies. Make sure you run `npm install` after downloading/unzipping the project. You'll need to have NPM installed obviously, I'm not familiar with Windows +...
It looks like that site is responding with its mobile version to the phantom renderer, as you can see from the header of the page (even if the userAgent is...
@dionkas, @CP-4, @JulieVoltaire Since the ActiveCampaign API requires that a secret key is sent in a header, you'd be exposing your secret key to all of your visitors if you...
Hi @gnutix, we're not using phpunit 10 just yet, but I'm sure that will be in the pipeline soon. Thanks for the report and the link to the docs. I...
Thanks for the tip here, I ran into this issue with the Interceptors relying on a service that needed the config request to be resolved already. Changing to XHR solved...
I added your snippet as a test case in my fork of this project: https://github.com/jaydiablo/jsmin-php It passes (which means that the output of the PHP version matches the output of...
I added the mif.tree library (1.2.6.4 as of this writing) as a test case in my fork on js-min-php and it passes against the C version of jsmin. The output...
In my branch of this project (https://github.com/jaydiablo/jsmin-php) I added modernizr to the test case, and it passes (which means that the minified version of the library matches the JSMin (original...
By adding this stub to this plugin's `TestCase.php` stub file: ```php namespace { use PHPUnit\Framework\TestCase; abstract class PHPUnit_Framework_TestCase extends TestCase { } } ``` (and wrapping the other stubs in...