Files
michaelschiemer/composer.json
Michael Schiemer 36ef2a1e2c
Some checks failed
🚀 Build & Deploy Image / Determine Build Necessity (push) Failing after 10m14s
🚀 Build & Deploy Image / Build Runtime Base Image (push) Has been skipped
🚀 Build & Deploy Image / Build Docker Image (push) Has been skipped
🚀 Build & Deploy Image / Run Tests & Quality Checks (push) Has been skipped
🚀 Build & Deploy Image / Auto-deploy to Staging (push) Has been skipped
🚀 Build & Deploy Image / Auto-deploy to Production (push) Has been skipped
Security Vulnerability Scan / Check for Dependency Changes (push) Failing after 11m25s
Security Vulnerability Scan / Composer Security Audit (push) Has been cancelled
fix: Gitea Traefik routing and connection pool optimization
- Remove middleware reference from Gitea Traefik labels (caused routing issues)
- Optimize Gitea connection pool settings (MAX_IDLE_CONNS=30, authentication_timeout=180s)
- Add explicit service reference in Traefik labels
- Fix intermittent 504 timeouts by improving PostgreSQL connection handling

Fixes Gitea unreachability via git.michaelschiemer.de
2025-11-09 14:46:15 +01:00

70 lines
1.8 KiB
JSON

{
"name": "michaelschiemer/website",
"description": "michaelschiemer.de website",
"type": "project",
"license": "proprietary",
"autoload": {
"psr-4": {
"App\\": "src/"
},
"exclude-from-classmap": [
"src/**/*.php85/**"
]
},
"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.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-sodium": "*",
"ext-posix": "*",
"ext-uri": "*"
},
"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)"
},
"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"
}
}