Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/0.53.x' into feat-migrations
Browse files Browse the repository at this point in the history
# Conflicts:
#	composer.json
#	docker-compose.yml
#	src/Database/Adapter.php
#	src/Database/Adapter/MariaDB.php
#	src/Database/Adapter/Postgres.php
#	src/Database/Adapter/SQL.php
#	src/Database/Adapter/SQLite.php
#	src/Database/Database.php
  • Loading branch information
abnegate committed Nov 6, 2024
2 parents 3357657 + 6661edf commit 4688aef
Show file tree
Hide file tree
Showing 24 changed files with 2,764 additions and 1,131 deletions.
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,27 +27,27 @@
"Composer\\Config::disableProcessTimeout",
"docker compose exec tests vendor/bin/phpunit --configuration phpunit.xml"
],
"lint": "./vendor/bin/pint --test",
"format": "./vendor/bin/pint",
"lint": "php -d memory_limit=2G ./vendor/bin/pint --test",
"format": "php -d memory_limit=2G ./vendor/bin/pint",
"check": "./vendor/bin/phpstan analyse --level 7 src tests --memory-limit 2G",
"coverage": "./vendor/bin/coverage-check ./tmp/clover.xml 90"
},
"require": {
"ext-pdo": "*",
"ext-mbstring": "*",
"php": ">=8.0",
"php": ">=8.3",
"utopia-php/framework": "0.33.*",
"utopia-php/cache": "0.10.*",
"utopia-php/cache": "0.11.*",
"utopia-php/mongo": "0.3.*"
},
"require-dev": {
"fakerphp/faker": "1.23.*",
"phpunit/phpunit": "9.6.*",
"pcov/clobber": "2.0.*",
"phpunit/phpunit": "9.*",
"pcov/clobber": "2.*",
"swoole/ide-helper": "5.1.3",
"utopia-php/cli": "0.14.*",
"laravel/pint": "1.17.*",
"phpstan/phpstan": "1.11.*",
"laravel/pint": "1.*",
"phpstan/phpstan": "1.*",
"rregeer/phpunit-coverage-check": "0.3.*"
},
"suggests": {
Expand Down
52 changes: 26 additions & 26 deletions composer.lock

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

2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
build:
context: .
args:
- DEBUG=true
DEBUG: true
networks:
- database
volumes:
Expand Down
3 changes: 3 additions & 0 deletions pint.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"preset": "psr12",
"exclude": [
"vendor"
],
"rules": {
"array_indentation": true,
"single_import_per_statement": true,
Expand Down
Loading

0 comments on commit 4688aef

Please sign in to comment.