CakeExcel
CakeExcel copied to clipboard
Feature/17
For issue #17 . Please let me know if this is okay.
Thanks.
The recent version of CakePHP requires php >= 5.6
@josegonzalez is this an issue with phpunit? What should I do to fix it?
@admad do you know how to fix this sort of issue?
Have you find out what's happening with travis so this can be finally merged?
I've been checking it a bit and, in phpunit_aliases.php
there's a requirement of phpunit >= 5.7:
if (version_compare(\PHPUnit_Runner_Version::id(), '5.7', '<')) {
trigger_error(sprintf('Your PHPUnit Version must be at least 5.7.0 to use CakePHP Testsuite, found %s', \PHPUnit_Runner_Version::id()), E_USER_ERROR);
}
and travis is running phpunit 5.6... But the error is not triggered.. and, instead it's trying to load the class aliases.
Weird 😕