Skip to content

Commit

Permalink
Update EditorConfig rules
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardogobbosouza committed Oct 31, 2022
1 parent 425153a commit a4f3629
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false

[*.php]
[*.{php,xml,xml.dist}]
indent_size = 4
36 changes: 18 additions & 18 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Test Suite">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
<report>
<clover outputFile="clover.xml"/>
<text outputFile="php://stdout"/>
</report>
</coverage>
<php>
<server name="APP_ENV" value="testing" />
<server name="APP_KEY" value="base64:nvUoszJKZCnAX4I9G9gAX1f9A921NqDKI7LcLGmbsDQ=" />
</php>
<testsuites>
<testsuite name="Test Suite">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
<report>
<clover outputFile="clover.xml"/>
<text outputFile="php://stdout"/>
</report>
</coverage>
<php>
<server name="APP_ENV" value="testing" />
<server name="APP_KEY" value="base64:nvUoszJKZCnAX4I9G9gAX1f9A921NqDKI7LcLGmbsDQ=" />
</php>
</phpunit>

0 comments on commit a4f3629

Please sign in to comment.