Seems 5.5+ handles nicely to simply changing from extension to zend_extension. 5.4 barks about not being able to find the shared object. Added 2 commands to attempt to load both. One should fail but the tests should pass. I'm not quite ready to give up on PHP 5.4, not until 5.6 is GM
Having some problems once it gets out on travis-ci. I suspect the path to the extension isn't being set properly and/or the extension isn't being loaded as a zend_extension which is mandatory.
Seems that uopz has superseded php-test-helpers. Updated the exit overloading and adjusted some tests based on the new behavior of not echoing out the argument passed to exit().
It seems like AYAH changed the format of the script URL being returned. I made the last part optional in case the last part of the URL still shows up in legacy type scenarios.
Still no dice on HHVM even with installing php5-dev. Added PHP 5.6 to see how
we fare. Will drop the allowed failure when 5.6 is gold or when the test suite
is passing. Whichever comes first.
Seems the format being returned doesn't start with ip... updated RegEx to check
for a 45 character alphanumeric instead of ip + 43 character alpha numeric
Probably need to rename the minify flag since it now also represents compiling the CSS. Better yet, probably better to eliminate it entirely and make it an assumption that you should only be compiling when on the "local" environment or when the minified file is completely missing.
I destroyed my old AYAH repo in favor of a fork of the official stuff that I updated. Had to add some vcs entry to get composer to pull from my fork and not the main package.
Characters were being split up and causing invalid sequences when using
`substr()`. Went ahead and updated to use `mb_strcut()` and forcing the
character encoding to UTF-8. I think the plan down the road will be to set the
internal encoding to UTF-8 but I am not currently sure how that could effect
the rest of the system (perhaps it won't). Closes#39