Enable Discovery debug logging for production troubleshooting

- Add DISCOVERY_LOG_LEVEL=debug
- Add DISCOVERY_SHOW_PROGRESS=true
- Temporary changes for debugging InitializerProcessor fixes on production
This commit is contained in:
2025-08-11 20:13:26 +02:00
parent 59fd3dd3b1
commit 55a330b223
3683 changed files with 2956207 additions and 16948 deletions

View File

@@ -8,6 +8,11 @@
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Michael Schiemer",
@@ -17,7 +22,9 @@
"minimum-stability": "stable",
"require-dev": {
"pestphp/pest": "^3.8",
"friendsofphp/php-cs-fixer": "^3.75"
"friendsofphp/php-cs-fixer": "^3.75",
"phpstan/phpstan": "^2.1",
"mockery/mockery": "^1.6"
},
"config": {
"allow-plugins": {
@@ -34,12 +41,18 @@
"ext-zlib": "*",
"ext-gd": "*",
"ext-pdo": "*",
"ext-apcu": "*"
"ext-apcu": "*",
"ext-redis": "*",
"ext-zend-opcache": "*",
"ext-openssl": "*",
"ext-bcmath": "*"
},
"scripts": {
"cs": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix --allow-risky=yes || true",
"reload": "composer dump-autoload -o"
"reload": "composer dump-autoload -o",
"phpstan": "phpstan analyse",
"phpstan-baseline": "phpstan analyse --generate-baseline"
}
}