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
-
SidTheITGuy963359d> what happens if you use Laravel 12 then Laravel 15 is released, the update won't break the current version?
- Use php5.6 version mate. Seems like the best solution for you if a framework updating is the biggest problem for you. -
myss442559dIt is a bad idea. I did the same long time ago from the same reason also in PHP. Also I wanted to do it more performant as those files and folders appeared inneficent to me.
What I've made after dozen weeks was an unmaintenable monster that was also slow as fuck compared even to slowest php framework at the time.
At that moment I finally understood the phrase - do not reinvent the wheel. You are not smarter then thousands of people that collectively developed a framework.
If you don't like Laravel, look into Symfony, Laminas, Yii, Phalcon etc and just pick the one that suits you and learn to deal with its shortcomings.
But don't reinvent the wheel - that is if you don't like to throw your time around. -
I mean, all the big frameworks were someone's "I'll build my own" at some point
-
dIREsTRAITS43459d@myss can you share what you did back then in a github repo?
You were based on what when you created it, it shouldn't be slow at all
Mine is similar to laravel without all the laravel packages, I named it X, maybe should have call it Laravel-less haha -
dIREsTRAITS43459d@TheBeardedOne totally true, when you take a deep look, a frameware is just a bunch of folders that organize the code (MVC) with PSR convention and all the composer packages that makes things easier....
-
dIREsTRAITS43459d@SidTheITGuy I'm not sure if you were joking or not, but are you aware that php8. 2 is required to run Laravel 12?
PHP5.6? HAHA you made my day -
Chewbanacas77259d@SidTheITGuy even going near a machine running that would make me put on a facemask
-
tosensei855758dwell, if laravel is your point of reference, even "stabbing yourself in the eyes" seems sane.
if you're stuck with PHP, at least use zend as basis.
Related Rants
Is it a bad idea if i choose to build my own framework rather than using Laravel for example? I took a look at Laravel and it's a hell of folders, in addition you start coding in laravel not php lol so it has to be taylor's coding style, next, what happens if you use Laravel 12 then Laravel 15 is released, the update won't break the current version?
I need your opinions specially from those who created their own php framework just for the sake of stability and simplicity, i don't need all the bloatware from laravel, I'm using MVC concept and following PSR conventions....
question
php