UNPKG

php-ini-automation

Version:

Ultimate Laravel-optimized PHP configuration tool that automatically detects and configures PHP installations across all environments with Laravel 10+ specific extensions, performance settings, and security configurations

9 lines 462 B
#!/usr/bin/env node import { determinePhpIniPaths, scanPhpInstallations } from './phpEnvironmentUtils'; import { customizePhpIni, validateSourceFile } from './phpIniManager'; /** * Enhanced PHP ini update function with better UX */ declare function updatePhpIni(version?: string, interactive?: boolean): Promise<void>; export { customizePhpIni, determinePhpIniPaths, scanPhpInstallations, updatePhpIni, validateSourceFile }; //# sourceMappingURL=index.d.ts.map