1
0
mirror of https://github.com/Ne-Lexa/php-zip.git synced 2025-08-30 10:19:51 +02:00

issue #8 - Support inline Content-Disposition and empty output filename.

This commit is contained in:
Ne-Lexa
2017-11-14 14:03:44 +03:00
parent 02afaae56c
commit e62e51efb5
4 changed files with 69 additions and 75 deletions

View File

@@ -1,10 +1,23 @@
<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="./vendor/autoload.php" colors="true">
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php">
<php>
<ini name="error_reporting" value="-1"/>
</php>
<testsuites>
<testsuite name="PhpZip test suite">
<directory>./tests</directory>
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src</directory>
</whitelist>
</filter>
</phpunit>