- Move 12 markdown files from root to docs/ subdirectories - Organize documentation by category: • docs/troubleshooting/ (1 file) - Technical troubleshooting guides • docs/deployment/ (4 files) - Deployment and security documentation • docs/guides/ (3 files) - Feature-specific guides • docs/planning/ (4 files) - Planning and improvement proposals Root directory cleanup: - Reduced from 16 to 4 markdown files in root - Only essential project files remain: • CLAUDE.md (AI instructions) • README.md (Main project readme) • CLEANUP_PLAN.md (Current cleanup plan) • SRC_STRUCTURE_IMPROVEMENTS.md (Structure improvements) This improves: ✅ Documentation discoverability ✅ Logical organization by purpose ✅ Clean root directory ✅ Better maintainability
57 lines
1.3 KiB
JSON
57 lines
1.3 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.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": "*"
|
|
},
|
|
|
|
"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"
|
|
}
|
|
}
|