summaryrefslogtreecommitdiff
path: root/vendor/league
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2017-12-30 14:22:13 +0000
committerGreg Roach <fisharebest@gmail.com>2018-01-02 20:18:10 +0000
commit27c4cda0cb98970e86f55c22a8248833b6cf40d9 (patch)
tree7f7f01577ead547aaefa1db79c77830836f6b5f6 /vendor/league
parent87f36d93a85c7feb25fe17c05ec58b902d02c08f (diff)
downloadwebtrees-27c4cda0cb98970e86f55c22a8248833b6cf40d9.tar.gz
webtrees-27c4cda0cb98970e86f55c22a8248833b6cf40d9.tar.bz2
webtrees-27c4cda0cb98970e86f55c22a8248833b6cf40d9.zip
Use npm/webpack/babel/laravel-mix to manage and bundle assets
Diffstat (limited to 'vendor/league')
-rw-r--r--vendor/league/flysystem-ziparchive/phpunit.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/vendor/league/flysystem-ziparchive/phpunit.xml b/vendor/league/flysystem-ziparchive/phpunit.xml
new file mode 100644
index 0000000000..2436ef05c6
--- /dev/null
+++ b/vendor/league/flysystem-ziparchive/phpunit.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<phpunit backupGlobals="false"
+ backupStaticAttributes="false"
+ bootstrap="./phpunit.php"
+ colors="true"
+ convertErrorsToExceptions="true"
+ convertNoticesToExceptions="true"
+ convertWarningsToExceptions="true"
+ processIsolation="false"
+ stopOnFailure="false"
+ syntaxCheck="true"
+ verbose="true"
+>
+ <testsuites>
+ <testsuite name="flysystem/tests">
+ <directory suffix=".php">./tests/</directory>
+ </testsuite>
+ </testsuites>
+ <filter>
+ <whitelist>
+ <directory suffix=".php">./src/</directory>
+ </whitelist>
+ </filter>
+ <listeners>
+ <listener class="Mockery\Adapter\Phpunit\TestListener" file="./vendor/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php"></listener>
+ </listeners>
+ <logging>
+ <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
+ <log type="coverage-html" target="coverage" showUncoveredFiles="true"/>
+ <log type="coverage-clover" target="coverage.xml" showUncoveredFiles="true"/>
+ </logging>
+</phpunit>