0

Best rest approach with PHP ? No framework ? From scratch ? Why this choice ?

Comments
  • 1
    Use frameworks and libraries if you plan to do anything serious. I understand the necessity to understand a language before working with the tools surrounding it, but PHP < 7's standard library is shit.
  • 0
    @paulwillyjean ok slim vs symphonie vs lavarel ?
  • 0
    @rajilsaj slim for simple projects, cakephp & laravel for complex ones.
  • 0
    @mohammed I'll go for slim
  • 1
    @rajilsaj
    If you are doing it for the educational purposes, I suggest you go with the other two, because you will get to learn how MVC works. If you already know MVC ignore this comment.
  • 1
    Just be careful not to lock yourself to ONE framework. We in the .NET world know painstakingly well what that would bring. Frameworks are pretty close to an anti-pattern here.

    Isolate your REST API from EVERYTHING else.
Add Comment