Skip to content

Commit

Permalink
Merge pull request #20 from ghostwriter/feature/refactor-container
Browse files Browse the repository at this point in the history
feature/refactor container
  • Loading branch information
ghostwriter authored Apr 8, 2023
2 parents f58ab1a + 6523d1e commit c307db9
Show file tree
Hide file tree
Showing 6 changed files with 121 additions and 132 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"missing-returntypes": "psalm --alter --issues=MissingReturnType",
"normalizer": "@composer normalize --no-check-lock",
"phpstan": "vendor/bin/phpstan --ansi --verbose --xdebug",
"phpunit": "phpunit --colors=always --testdox --stop-on-failure",
"phpunit": "vendor/bin/phpunit",
"psalm": "@psalm:shepherd",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"psalm:dry-run": "psalm --alter --issues=all --dry-run",
Expand Down
82 changes: 41 additions & 41 deletions composer.lock

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

11 changes: 6 additions & 5 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,31 @@
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
bootstrap="vendor/autoload.php"
cacheDirectory=".cache/phpunit"
cacheResult="false"
cacheResultFile=".cache/phpunit/test-results"
displayDetailsOnTestsThatTriggerDeprecations="true"
colors="true"
displayDetailsOnIncompleteTests="true"
displayDetailsOnSkippedTests="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
colors="true"
executionOrder="depends,defects"
failOnEmptyTestSuite="true"
failOnIncomplete="true"
failOnRisky="true"
failOnSkipped="true"
failOnWarning="true"
requireCoverageMetadata="true"
stopOnDefect="true"
stopOnFailure="true"
stopOnRisky="true"
stopOnDefect="true"
testdox="true"
>
>
<testsuites>
<testsuite name="Unit">
<directory>tests/Unit</directory>
Expand Down
Loading

0 comments on commit c307db9

Please sign in to comment.