Array
PHP arrays will automatically be converted to a JSON response
return [
'routes' => [
[
'pattern' => 'custom/response',
'action' => function () {
return [
'status' => 'ok',
'data' => ['foo' => 'bar']
];
}
]
]
];