What tools / frameworks are available to create a restful API in PHP? [closed]

2

Is there any tool of this type that facilitates the development of a RESTful API? I've heard of the Slim Framework, but wanted to know more tools.

----- edited To be more specific, I want to make a RESTful API to grab data from a MySQL DB and use it with several different interfaces, in a corporate way, just inside my company.  So to summarize, I need flexibility and security.

    
asked by anonymous 17.07.2015 / 18:33

1 answer

1

Slim really makes it easy, but I suggest you take a look at Silex, which is a microframework built on Symfony2 components, being as easy as Slim, but with more features.

    
17.07.2015 / 20:23