Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
What was the name of the mini laravel made by the same guy as laravel?
Edit
https://lumen.laravel.com -
fyroc58745yI looked at it, still wasn’t small enough. That’s perfect for micro services and APIs but not what I needed it for.
-
Symfony can be striped down pretty hardcore for web APIs as well. I dunno if it would have fit your bill though
-
nitnip18085yThere's the Ubiquity framework. It's a bit barebones but I think it has what you want.
https://ubiquity.kobject.net/
http://phpbenchmarks.com/en/... -
Hel8y3375yZend Expressive. A stripped down version of Zend Framework, it just implements PSR middleware, routers and dependency injection. Multiple routers and DI frameworks are available. (View) renderer is optional, but again, multiple options are available. I never use them, instead I return JSON response.
-
fyroc58745yThanks for the suggestion but I already built the framework that does everything I need it to do and not everything I don’t.
I’m very surprised at the lack of PHP micro frameworks with correct Namespace and Class support. I had to spend my weekend adding it, as well as making it so you can easily add a ORM library to it.
Sure I could use Laravel or Codeignitior, but I just needed something simple for rapid development of simple GUIs for desktop and server applications. I couldn’t justify copying over 6500 files for something I’m only going to use a quarter of its features. Now, I can just use composer to install the features I need.
rant