summaryrefslogtreecommitdiff
path: root/tests/showmods.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/showmods.php')
-rw-r--r--tests/showmods.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/showmods.php b/tests/showmods.php
deleted file mode 100644
index 3408435..0000000
--- a/tests/showmods.php
+++ /dev/null
@@ -1,9 +0,0 @@
-<?php
-
-$mods = glob('../mods/*.json');
-
-foreach ($mods as $mod) {
- $json = file_get_contents($mod);
- $data = json_decode($json, true);
- echo $mod . ': ' . $data['name'] . PHP_EOL;
-}