Update composer dependencies

This commit is contained in:
Kijin Sung 2020-04-08 00:10:06 +09:00
parent 255352df62
commit 61d2e8c141
419 changed files with 37794 additions and 5489 deletions

24
vendor/jbbcode/jbbcode/phpunit.xml.dist vendored Normal file
View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="JBBCode/tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false"
backupGlobals="false"
backupStaticAttributes="false">
<testsuites>
<testsuite name="jBBCode Test Suite">
<directory>JBBCode/tests</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory suffix=".php">examples/</directory>
<directory suffix=".php">vendor</directory>
</blacklist>
</filter>
<logging>
<log type="coverage-clover" target="clover.xml"/>
</logging>
</phpunit>