22declare(strict_types=1);
 
   25$extLen = strlen($ext);
 
   26foreach(scandir(__DIR__, SCANDIR_SORT_NONE) as $file){
 
   27    if(substr($file, -$extLen) === $ext){
 
   28        $file = __DIR__ . 
"/$file";
 
   29        file_put_contents($file, json_encode(json_decode(file_get_contents($file))));
 
   30        echo 
"Minified JSON file $file\n";