Skip to content

Commit b0db160

Browse files
authored
Merge pull request #221 from ghostwriter/feature/error-response
Log error response message
2 parents e9b3ba4 + 52b88f1 commit b0db160

File tree

10 files changed

+248
-174
lines changed

10 files changed

+248
-174
lines changed

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
},
2323
"require-dev": {
2424
"doctrine/coding-standard": "^11.0.0",
25-
"php-standard-library/psalm-plugin": "^2.1.0",
26-
"phpunit/phpunit": "^9.5.26",
27-
"psalm/plugin-phpunit": "^0.18.0",
28-
"roave/infection-static-analysis-plugin": "^1.25.0",
25+
"php-standard-library/psalm-plugin": "^2.2.1",
26+
"phpunit/phpunit": "^9.5.27",
27+
"psalm/plugin-phpunit": "^0.18.4",
28+
"roave/infection-static-analysis-plugin": "^1.26.0",
2929
"squizlabs/php_codesniffer": "^3.7.1",
30-
"vimeo/psalm": "^5.0.0"
30+
"vimeo/psalm": "^5.3.0"
3131
},
3232
"config": {
3333
"sort-packages": true,

composer.lock

Lines changed: 96 additions & 85 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpunit.xml.dist

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<phpunit
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5-
colors="true"
6-
verbose="true"
7-
failOnRisky="true"
8-
>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
cacheResultFile=".phpunit.cache/test-results"
6+
executionOrder="depends,defects"
7+
beStrictAboutOutputDuringTests="true"
8+
beStrictAboutTodoAnnotatedTests="true"
9+
convertDeprecationsToExceptions="true"
10+
failOnRisky="true"
11+
failOnWarning="true"
12+
verbose="true">
913
<testsuites>
1014
<testsuite name="laminas/automatic-releases unit tests">
1115
<directory>./test/unit</directory>
1216
</testsuite>
1317
</testsuites>
1418

15-
<coverage>
19+
<coverage processUncoveredFiles="true">
1620
<include>
17-
<directory>src</directory>
21+
<directory suffix=".php">src</directory>
1822
</include>
1923
</coverage>
2024
</phpunit>

0 commit comments

Comments
 (0)