AndreiM Posted September 28, 2015 Share Posted September 28, 2015 Hey guys, I want to tell you guys about new PHP MVC Framework. It's very simple to install and is currently being used by 4 sites. It was incepted on 9/14/2015. It's very easy to install and easy to update the base (Less worry about the main code). Since it's brand new it will improve regularly, so be expected to create a batch or bash file and set crontab/task schedule to update every day. It supports 5.4 and later and it would be great to get some support! Check it out at: https://github.com/juliarLang/juliarICE Follow instructions, right below. Thanks for your time! Quote Link to comment Share on other sites More sharing options...
QuickOldCar Posted September 28, 2015 Share Posted September 28, 2015 Good luck on your project, hard to beat something like laravel. You are going to need a lot more help or time to get this mature and stable enough for lots wanting to commit to it. Quote Link to comment Share on other sites More sharing options...
scootstah Posted September 28, 2015 Share Posted September 28, 2015 Your framework repo needs some work. You need proper directory structure and namespacing on your classes. And you definitely need dependency injection, so that you don't have to do things like this: // Load model class protected function load_model($model) { if(class_exists($model)) { $this->models[$model] = new $model(); } } Check out Pimple. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.