mirror of
https://github.com/mrclay/minify.git
synced 2025-01-17 05:08:14 +01:00
4710509c68
Moves all dependency building into App bootstrap.php returns an App instance The app loads config files as necessary Moves logging to Monolog Moves HTTP digest auth to packagist component Rely on sys_get_temp_dir Env hosts $_POST and allows defaults when reading HTML helper uses the App and can handle less files Source factory assumes strings are filenames Fixes JsClosureCompilerTest::test6 (API now handles ES5 by default) Exclude JsClosureCompilerTest due to API limitations config.php can now return a Minify\Config object Variables set in config.php are now moved to a `Minify\Config` object, allowing better static analysis. The `zlib.output_compression` set is moved into `Minify::serve`.
39 lines
837 B
XML
39 lines
837 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- http://phpunit.de/manual/current/en/appendixes.configuration.html -->
|
|
<phpunit
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
bootstrap="vendor/autoload.php">
|
|
|
|
<testsuites>
|
|
<testsuite name="Project Test Suite">
|
|
<directory>tests</directory>
|
|
<exclude>tests/JsClosureCompilerTest.php</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<!--
|
|
<php>
|
|
<server name="KERNEL_DIR" value="/path/to/your/app/" />
|
|
</php>
|
|
-->
|
|
|
|
<!-- for code coverage -->
|
|
<filter>
|
|
<whitelist>
|
|
<directory>.</directory>
|
|
<exclude>
|
|
<directory>tests</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|