Files
michaelschiemer/composer.json
Michael Schiemer fc3d7e6357 feat(Production): Complete production deployment infrastructure
- Add comprehensive health check system with multiple endpoints
- Add Prometheus metrics endpoint
- Add production logging configurations (5 strategies)
- Add complete deployment documentation suite:
  * QUICKSTART.md - 30-minute deployment guide
  * DEPLOYMENT_CHECKLIST.md - Printable verification checklist
  * DEPLOYMENT_WORKFLOW.md - Complete deployment lifecycle
  * PRODUCTION_DEPLOYMENT.md - Comprehensive technical reference
  * production-logging.md - Logging configuration guide
  * ANSIBLE_DEPLOYMENT.md - Infrastructure as Code automation
  * README.md - Navigation hub
  * DEPLOYMENT_SUMMARY.md - Executive summary
- Add deployment scripts and automation
- Add DEPLOYMENT_PLAN.md - Concrete plan for immediate deployment
- Update README with production-ready features

All production infrastructure is now complete and ready for deployment.
2025-10-25 19:18:37 +02:00

68 lines
1.8 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 || ^8.5",
"predis/predis": "^3.0",
"ext-dom": "*",
"ext-libxml": "*",
"ext-curl": "*",
"ext-pcntl": "*",
"ext-fileinfo": "*",
"ext-zlib": "*",
"ext-gd": "*",
"ext-pdo": "*",
"ext-openssl": "*",
"ext-bcmath": "*",
"ext-uri": "*",
"ext-sodium": "*",
"ext-posix": "*"
},
"suggest": {
"ext-apcu": "For better caching performance (not yet available for PHP 8.5)",
"ext-redis": "For Redis cache driver support (not yet available for PHP 8.5)",
"ext-zend-opcache": "For improved performance (built-in for PHP 8.5)"
},
"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",
"security:audit": "composer audit --format=table",
"security:audit-json": "composer audit --format=json",
"security:check": "@security:audit --no-dev"
}
}