Skip to content

Commit

Permalink
Merge pull request #221 from ghostwriter/feature/error-response
Browse files Browse the repository at this point in the history
Log error response message
  • Loading branch information
Ocramius committed Dec 19, 2022
2 parents e9b3ba4 + 52b88f1 commit b0db160
Show file tree
Hide file tree
Showing 10 changed files with 248 additions and 174 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
},
"require-dev": {
"doctrine/coding-standard": "^11.0.0",
"php-standard-library/psalm-plugin": "^2.1.0",
"phpunit/phpunit": "^9.5.26",
"psalm/plugin-phpunit": "^0.18.0",
"roave/infection-static-analysis-plugin": "^1.25.0",
"php-standard-library/psalm-plugin": "^2.2.1",
"phpunit/phpunit": "^9.5.27",
"psalm/plugin-phpunit": "^0.18.4",
"roave/infection-static-analysis-plugin": "^1.26.0",
"squizlabs/php_codesniffer": "^3.7.1",
"vimeo/psalm": "^5.0.0"
"vimeo/psalm": "^5.3.0"
},
"config": {
"sort-packages": true,
Expand Down
181 changes: 96 additions & 85 deletions composer.lock

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

24 changes: 14 additions & 10 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
verbose="true"
failOnRisky="true"
>
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheResultFile=".phpunit.cache/test-results"
executionOrder="depends,defects"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
verbose="true">
<testsuites>
<testsuite name="laminas/automatic-releases unit tests">
<directory>./test/unit</directory>
</testsuite>
</testsuites>

<coverage>
<coverage processUncoveredFiles="true">
<include>
<directory>src</directory>
<directory suffix=".php">src</directory>
</include>
</coverage>
</phpunit>
Loading

0 comments on commit b0db160

Please sign in to comment.