Move API to use JSON:API standards and fractal serializer
Makes the data slightly more complex, but forces a standard and can always be changed down the road simply by changing the default serializer.
This commit is contained in:
parent
c071efd008
commit
65630bdcce
15 changed files with 315 additions and 22 deletions
|
@ -49,6 +49,7 @@ class StatsTransformer extends TransformerAbstract
|
|||
$json = json_decode($res->getBody());
|
||||
|
||||
return [
|
||||
'id' => 1,
|
||||
'status' => $json->status,
|
||||
'resources' => $json->proc,
|
||||
];
|
||||
|
|
Reference in a new issue