Create Rest API in php

Hi there

What is best framework to create JSON API in php?

Never tried this, but it looks pretty good https://apigility.org

1 Like

@explor

Thanks

You don’t really need anything special to create a JSON api. Rest is nothing more than sending back json in a response rather than html. All major php frameworks like Symfony and Laravel support that.

1 Like

actually, REST isn’t about what the API returns, but how to address resources (in terms of HTTP).

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.