Skip to content

Commit

Permalink
add local config files
Browse files Browse the repository at this point in the history
  • Loading branch information
Pen-y-Fan committed Oct 3, 2021
1 parent f882d24 commit 7bb98d2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"monolog/monolog": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "~5.0"
"phpunit/phpunit": "~5.7"
},
"autoload": {
"psr-4": {
Expand Down
11 changes: 11 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="vendor/autoload.php" backupGlobals="false" beStrictAboutCoversAnnotation="true" beStrictAboutOutputDuringTests="true" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutTodoAnnotatedTests="true" verbose="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<testsuite name="default">
<directory suffix="Test.php">tests</directory>
</testsuite>
</phpunit>

0 comments on commit 7bb98d2

Please sign in to comment.