Skip to content

Commit

Permalink
Reduced requirements for brick/math package version
Browse files Browse the repository at this point in the history
  • Loading branch information
romanzaycev committed Jul 1, 2024
1 parent 56b88b1 commit aaac238
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"ext-mbstring": "*",
"olifanton/typed-arrays": "^1.0.1",
"myclabs/deep-copy": "^1.11",
"brick/math": "^0.10"
"brick/math": ">=0.10"
},
"suggest": {
"ext-bcmath": "*",
Expand All @@ -51,7 +51,7 @@
},
"scripts": {
"test": "XDEBUG_MODE=coverage phpunit",
"test:cr": "XDEBUG_MODE=coverage phpunit --coverage-html build",
"test:cr": "XDEBUG_MODE=coverage phpunit --coverage-html build/coverage-unit",
"phplint": "phplint -c .phplint.yml",
"phpstan": "XDEBUG_MODE=off phpstan analyse -c phpstan.neon --ansi --xdebug",
"checks": [
Expand Down
4 changes: 2 additions & 2 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="tests/bootstrap.php"
cacheResultFile="build/test-results"
cacheResultFile="build/cache/test-results"
executionOrder="depends,defects"
forceCoversAnnotation="false"
beStrictAboutOutputDuringTests="true"
Expand All @@ -17,7 +17,7 @@
</testsuite>
</testsuites>

<coverage cacheDirectory="build"
<coverage cacheDirectory="build/cache/phpunit"
processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
Expand Down

0 comments on commit aaac238

Please sign in to comment.