Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Fix faker issue
Browse files Browse the repository at this point in the history
  • Loading branch information
imjohnbon committed Sep 19, 2018
1 parent 047f77a commit ee6cdf2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"require-dev": {
"mockery/mockery": "^1.0.0",
"phpunit/phpunit": "~7.0",
"orchestra/testbench": "~3.0"
"orchestra/testbench": "~3.0",
"fzaninotto/faker": "^1.8"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,9 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<filter>
<blacklist>
<directory suffix=".php">.</directory>
</blacklist>
<whitelist>
<whitelist addUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./src</directory>
<exclude>
<file>./src/QuicksandServiceProvider.php</file>
Expand All @@ -23,7 +19,7 @@
</filter>
<testsuites>
<testsuite name="Package Test Suite">
<directory suffix=".php">./tests/</directory>
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit ee6cdf2

Please sign in to comment.