ea5663bc00
Over the years PclZip became a maintenance problem. It's code base is old and the official project seems to have died out. ZipArchive is now more commonly available and offer an easier and more complete API. So PclZip was dropped in order to focus our efforts on what matters. Closes #18
23 lines
719 B
XML
23 lines
719 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit bootstrap="./tests/bootstrap.php"
|
|
backupGlobals="true"
|
|
colors="true"
|
|
syntaxCheck="true"
|
|
disallowTestOutput="true">
|
|
<php>
|
|
<ini name="memory_limit" value="2048M"/>
|
|
</php>
|
|
<testsuite name="PhpSpreadsheet Unit Test Suite">
|
|
<directory suffix="Test.php">./tests/PhpSpreadsheetTests</directory>
|
|
</testsuite>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./src</directory>
|
|
<exclude>
|
|
<directory>./src/PhpSpreadsheet/Shared/JAMA</directory>
|
|
<directory>./src/PhpSpreadsheet/Writer/PDF</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|