PHP-SQL-Parser icon indicating copy to clipboard operation
PHP-SQL-Parser copied to clipboard

Support for PHP and PHPUnit versions discrapency

Open czoIg opened this issue 3 years ago • 0 comments

In composer.json there's:

"require" : {
	"php" : ">=5.3.2"
}

but there's also:

"require-dev" : {
	...
	"phpunit/phpunit" : "^9.5.13",
	...
}

which produces error in travis:

  Problem 1
    - phpunit/phpunit[9.5.13, ..., 9.5.21] require php >=7.3 -> your php version (5.4.45) does not satisfy that requirement.

There's also migration issue320Test.php which uses unsupported PHPUnit_Framework_TestCase.

czoIg avatar Jul 12 '22 09:07 czoIg