#!/usr/bin/env php [--apply]\n"); exit(2); } if ($apply) { fwrite(STDERR, 'IMPORT CONTACTS demandé. Tapez IMPORTER CONTACTS : '); if (trim((string) fgets(STDIN)) !== 'IMPORTER CONTACTS') { fwrite(STDERR, "Import annulé.\n"); exit(3); } } try { Migrations::run($root . '/migrations'); echo json_encode(Asm3ContactImporter::run($source, DB::pdo(), $apply), JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE), "\n"; } catch (Throwable $e) { fwrite(STDERR, "Échec : {$e->getMessage()}\n"); exit(1); }