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:
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user