▲ | mjrpes 6 days ago | |||||||
What do you think of Slim Framework as far as best practices for modern PHP in a micro framework (which is similar to OP's Dumbo)? Are there any other micro frameworks you recommend? | ||||||||
▲ | jtreminio 6 days ago | parent [-] | |||||||
At the risk of being piled on by fans of Slim (see fans of Laravel), I don't use slim frameworks. For large projects when you get down to it, slim frameworks are simply frameworks where you have to add in components yourself, vs shipping with sane defaults. Symfony comes with Doctrine, Twig, etc, but you can choose not to use them or even include them. With slim frameworks if they are built correctly they will have hooks to add these components but you have to choose them and import them and set them up. I have not worked on a small project in years, and have not bothered looking at slim frameworks in as much time, so my knowledge might be out of date ... but a quick glance through Slim's documentation tells me I'm still fairly close. | ||||||||
|