- Fix RedisCache driver to handle MGET failures gracefully with fallback - Add comprehensive discovery context comparison debug tools - Identify root cause: WEB context discovery missing 166 items vs CLI - WEB context missing RequestFactory class entirely (52 vs 69 commands) - Improved exception handling with detailed binding diagnostics
60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"name": "michaelschiemer/website",
|
|
"description": "michaelschiemer.de website",
|
|
"type": "project",
|
|
"license": "proprietary",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Michael Schiemer",
|
|
"email": "kontakt@michaelschiemer.de"
|
|
}
|
|
],
|
|
"minimum-stability": "stable",
|
|
"require-dev": {
|
|
"pestphp/pest": "^3.8",
|
|
"friendsofphp/php-cs-fixer": "^3.75",
|
|
"phpstan/phpstan": "^2.1",
|
|
"mockery/mockery": "^1.6"
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^8.4",
|
|
"predis/predis": "^3.0",
|
|
"ext-dom": "*",
|
|
"ext-libxml": "*",
|
|
"ext-curl": "*",
|
|
"ext-pcntl": "*",
|
|
"ext-fileinfo": "*",
|
|
"ext-zlib": "*",
|
|
"ext-gd": "*",
|
|
"ext-pdo": "*",
|
|
"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",
|
|
"phpstan": "phpstan analyse",
|
|
"phpstan-baseline": "phpstan analyse --generate-baseline"
|
|
}
|
|
}
|