Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .dev/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
debug
coverage
coverage
bench.html
2 changes: 1 addition & 1 deletion .dev/docker/php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN install-php-extensions bcmath

FROM base AS dev

RUN install-php-extensions xdebug pcntl posix
RUN install-php-extensions xdebug pcntl posix opcache

# Install and Configure XDebug
COPY ./xdebug.ini /usr/local/etc/php/conf.d/60_xdebug.ini
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,8 @@
"require": {
"php": ">=8.3",
"ext-bcmath": "*",
"castor/io": "^0.3.0",
"castor/bytes": "^0.2.0",
"castor/functions": "^0.2.0",
"brick/date-time": "^0.6",
"brick/math": "^0.10"
"castor/functions": "^1.0",
"brick/date-time": "^0.7"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
Expand Down Expand Up @@ -74,9 +71,11 @@
"test:unit": "phpunit --colors --exclude-group=integration --exclude-group=e2e",
"test:e2e": "phpunit --colors --group=e2e",
"test:integration": "phpunit --colors --group=integration",
"bench": "phpbench run tests/Benchmark --report=default",
"bench": "phpbench run --report=default --output=html tests/Benchmark",
"profile": "phpbench xdebug:profile tests/Benchmark --progress=none",
"psalm": "psalm --no-cache --threads=5",
"psalm:gh": "psalm --no-cache --threads=5 --long-progress --output-format=github"
"psalm:gh": "psalm --no-cache --threads=5 --long-progress --output-format=github",
"psalm:fix": "psalm --update-baseline",
"psalm:allow": "psalm --set-baseline=psalm-baseline.xml"
}
}
Loading
Loading