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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ COPY composer.json /src/
RUN composer install --ignore-platform-reqs --optimize-autoloader \
--no-plugins --no-scripts --prefer-dist

FROM php:8.3.3-cli-alpine3.19 as final
FROM php:8.4.22-cli-alpine3.24 as final

LABEL maintainer="team@appwrite.io"

Expand Down
11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,26 @@
"scripts": {
"lint": "./vendor/bin/pint --test",
"format": "./vendor/bin/pint",
"check": "./vendor/bin/phpstan analyse --level max src tests",
"check": "./vendor/bin/phpstan analyse -c phpstan.neon --memory-limit=1G",
"test": "./vendor/bin/phpunit --configuration phpunit.xml --testsuite \"Test Suite\"",
"bench": "./vendor/bin/phpunit --configuration phpunit.xml --testsuite Benchmark"
},
"minimum-stability": "stable",
"require": {
"php": ">=8.0",
"utopia-php/fetch": "^1.1",
"php": ">=8.4",
"utopia-php/client": "^0.1|^0.2",
"utopia-php/database": "5.*|6.0.*",
"utopia-php/query": "0.1.*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"utopia-php/cache": "^3.0",
"phpstan/phpstan": "1.*",
"phpstan/phpstan": "^2.0",
"laravel/pint": "1.*"
},
"suggest": {
"ext-curl": "Required by the default cURL transport for the ClickHouse adapter. Not needed if you inject a non-cURL utopia-php/client into the adapter."
},
"autoload": {
"psr-4": {
"Utopia\\Usage\\": "src/Usage"
Expand Down
161 changes: 114 additions & 47 deletions composer.lock

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

5 changes: 5 additions & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
parameters:
level: max
paths:
- src
- tests
Loading
Loading