aboutsummaryrefslogtreecommitdiff
path: root/api/contact/list/index.php
blob: 884821c8958da23ad8b19536bd8382cb53bd0729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

$config = json_decode(file_get_contents($_SERVER["DOCUMENT_ROOT"] . "/data/projects.json"), true);
$listed = [];
header("Content-Type: application/json");

foreach ($config as $project) {
    unset($project["showcase"]);
    $listed[] = $project;
}

die(json_encode($listed));