add composer-unused, comprehensive docs, and project restructure
- Add icanhazstring/composer-unused as dev dependency for dependency hygiene checks - Add German documentation (docs/) covering architecture, conventions, workflows, and developer checklists - Add API layer (ApiAuth, ApiBootstrap, ApiResponse), audit, scheduler, custom fields, and SSO services - Add Microsoft OIDC SSO, API token management, and user lifecycle features - Add swagger-ui vendor integration and OpenAPI spec - Add production Docker setup and bin/ scripts - Update composer dependencies, config, templates, and frontend assets throughout Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -9,52 +9,104 @@ use MintyPHP\I18n;
|
||||
use MintyPHP\Router;
|
||||
use MintyPHP\Session;
|
||||
|
||||
define('APP_NAME', getenv('APP_NAME') ?: 'IMVS');
|
||||
define('APP_SLOGAN', getenv('APP_SLOGAN') ?: 'Immobilien Makler Verkaufs Software');
|
||||
define('APP_TIMEZONE', getenv('APP_TIMEZONE') ?: 'Europe/Berlin');
|
||||
define('APP_STORAGE_PATH', getenv('APP_STORAGE_PATH') ?: __DIR__ . '/../storage');
|
||||
$tenantScopeEnv = getenv('TENANT_SCOPE_STRICT');
|
||||
define('TENANT_SCOPE_STRICT', $tenantScopeEnv === false ? true : filter_var($tenantScopeEnv, FILTER_VALIDATE_BOOLEAN));
|
||||
$envString = static function (string $key, string $default): string {
|
||||
$value = getenv($key);
|
||||
if ($value === false || $value === '') {
|
||||
return $default;
|
||||
}
|
||||
return (string) $value;
|
||||
};
|
||||
|
||||
$envInt = static function (string $key, int $default): int {
|
||||
$value = getenv($key);
|
||||
if ($value === false || $value === '') {
|
||||
return $default;
|
||||
}
|
||||
$parsed = filter_var($value, FILTER_VALIDATE_INT);
|
||||
return $parsed !== false ? (int) $parsed : $default;
|
||||
};
|
||||
|
||||
$envFloat = static function (string $key, float $default): float {
|
||||
$value = getenv($key);
|
||||
if ($value === false || $value === '') {
|
||||
return $default;
|
||||
}
|
||||
$parsed = filter_var($value, FILTER_VALIDATE_FLOAT);
|
||||
return $parsed !== false ? (float) $parsed : $default;
|
||||
};
|
||||
|
||||
$envBool = static function (string $key, bool $default): bool {
|
||||
$value = getenv($key);
|
||||
if ($value === false || $value === '') {
|
||||
return $default;
|
||||
}
|
||||
$parsed = filter_var($value, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE);
|
||||
return $parsed ?? $default;
|
||||
};
|
||||
|
||||
$envList = static function (string $key, array $default): array {
|
||||
$value = getenv($key);
|
||||
if ($value === false || $value === '') {
|
||||
return $default;
|
||||
}
|
||||
return array_values(array_filter(array_map('trim', explode(',', (string) $value))));
|
||||
};
|
||||
|
||||
define('APP_NAME', $envString('APP_NAME', 'IMVS'));
|
||||
define('APP_TIMEZONE', $envString('APP_TIMEZONE', 'Europe/Berlin'));
|
||||
define('APP_STORAGE_PATH', $envString('APP_STORAGE_PATH', __DIR__ . '/../storage'));
|
||||
define('APP_CRYPTO_KEY', $envString('APP_CRYPTO_KEY', ''));
|
||||
define('TENANT_SCOPE_STRICT', $envBool('TENANT_SCOPE_STRICT', true));
|
||||
if (!defined('APP_LOCALES')) {
|
||||
$locales = getenv('APP_LOCALES') ?: 'de,en';
|
||||
define('APP_LOCALES', array_values(array_filter(array_map('trim', explode(',', $locales)))));
|
||||
define('APP_LOCALES', $envList('APP_LOCALES', ['de', 'en']));
|
||||
}
|
||||
|
||||
if (!defined('APP_ROUTE_DEFINITIONS')) {
|
||||
$routesFile = __DIR__ . '/routes.php';
|
||||
$routeDefinitions = is_file($routesFile) ? include $routesFile : [];
|
||||
if (!is_array($routeDefinitions)) {
|
||||
$routeDefinitions = [];
|
||||
}
|
||||
define('APP_ROUTE_DEFINITIONS', $routeDefinitions);
|
||||
}
|
||||
|
||||
if (!defined('APP_PUBLIC_PATHS')) {
|
||||
define('APP_PUBLIC_PATHS', [
|
||||
'login',
|
||||
'register',
|
||||
'password/forgot',
|
||||
'password/verify',
|
||||
'password/reset',
|
||||
'lang',
|
||||
'imprint',
|
||||
'privacy',
|
||||
]);
|
||||
$publicPaths = [];
|
||||
foreach (APP_ROUTE_DEFINITIONS as $route) {
|
||||
if (!empty($route['public'])) {
|
||||
$path = trim((string) ($route['path'] ?? ''));
|
||||
if ($path !== '') {
|
||||
$publicPaths[] = $path;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!$publicPaths) {
|
||||
throw new RuntimeException('No public routes configured in config/routes.php');
|
||||
}
|
||||
define('APP_PUBLIC_PATHS', array_values(array_unique($publicPaths)));
|
||||
}
|
||||
|
||||
date_default_timezone_set(APP_TIMEZONE);
|
||||
ini_set('date.timezone', APP_TIMEZONE);
|
||||
|
||||
Router::$baseUrl = '/'; // default: '/'
|
||||
Router::$pageRoot = 'pages/'; // default: 'pages/'
|
||||
Router::$templateRoot = 'templates/'; // default: 'templates/'
|
||||
|
||||
Session::$sessionName = getenv('SESSION_NAME') ?: 'MintyPHP';
|
||||
Session::$sessionName = $envString('SESSION_NAME', 'MintyPHP');
|
||||
|
||||
Firewall::$concurrency = (int) (getenv('FIREWALL_CONCURRENCY') ?: 10);
|
||||
Firewall::$spinLockSeconds = (float) (getenv('FIREWALL_SPINLOCK_SECONDS') ?: 0.15);
|
||||
Firewall::$intervalSeconds = (int) (getenv('FIREWALL_INTERVAL_SECONDS') ?: 300);
|
||||
Firewall::$cachePrefix = getenv('FIREWALL_CACHE_PREFIX') ?: 'fw_concurrency_';
|
||||
Firewall::$reverseProxy = getenv('FIREWALL_REVERSE_PROXY') === 'true';
|
||||
Firewall::$concurrency = $envInt('FIREWALL_CONCURRENCY', 10);
|
||||
Firewall::$spinLockSeconds = $envFloat('FIREWALL_SPINLOCK_SECONDS', 0.15);
|
||||
Firewall::$intervalSeconds = $envInt('FIREWALL_INTERVAL_SECONDS', 300);
|
||||
Firewall::$cachePrefix = $envString('FIREWALL_CACHE_PREFIX', 'fw_concurrency_');
|
||||
Firewall::$reverseProxy = $envBool('FIREWALL_REVERSE_PROXY', false);
|
||||
|
||||
Cache::$servers = getenv('CACHE_SERVERS') ?: '127.0.0.1';
|
||||
Cache::$servers = $envString('CACHE_SERVERS', '127.0.0.1');
|
||||
|
||||
DB::$host = getenv('DB_HOST') ?: 'db';
|
||||
DB::$username = getenv('DB_USER') ?: 'mintyphp';
|
||||
DB::$password = getenv('DB_PASS') ?: 'mintyphp';
|
||||
DB::$database = getenv('DB_NAME') ?: 'mintyphp';
|
||||
DB::$port = (int) (getenv('DB_PORT') ?: 3306);
|
||||
DB::$host = $envString('DB_HOST', 'db');
|
||||
DB::$username = $envString('DB_USER', 'mintyphp');
|
||||
DB::$password = $envString('DB_PASS', 'mintyphp');
|
||||
DB::$database = $envString('DB_NAME', 'mintyphp');
|
||||
DB::$port = $envInt('DB_PORT', 3306);
|
||||
|
||||
Auth::$usersTable = 'users';
|
||||
Auth::$usernameField = 'email';
|
||||
@@ -62,8 +114,7 @@ Auth::$passwordField = 'password';
|
||||
Auth::$createdField = 'created';
|
||||
Auth::$totpSecretField = 'totp_secret';
|
||||
|
||||
$debugEnv = getenv('APP_DEBUG');
|
||||
Debugger::$enabled = $debugEnv === false ? true : filter_var($debugEnv, FILTER_VALIDATE_BOOLEAN);
|
||||
Debugger::$enabled = $envBool('APP_DEBUG', true);
|
||||
|
||||
I18n::$domain = getenv('APP_I18N_DOMAIN') ?: 'default';
|
||||
I18n::$locale = getenv('APP_LOCALE') ?: 'de';
|
||||
I18n::$domain = $envString('APP_I18N_DOMAIN', 'default');
|
||||
I18n::$locale = $envString('APP_LOCALE', 'de');
|
||||
|
||||
Reference in New Issue
Block a user