What's your 'no framework' PHP framework? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T21:03:13Z http://stackoverflow.com/feeds/question/694929 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/694929/whats-your-no-framework-php-framework 16 What's your 'no framework' PHP framework? Abi Noda 2009-03-29T16:45:33Z 2009-10-24T09:25:48Z <p>Even with a ton of PHP frameworks out there to choose from, I know many people prefer a minimal, personal set of libraries. What is your method when it comes to 'rolling your own' framework for PHP applications, and how does it vary depending on the type/scope of a project? </p> <p><strong>What does your script look like for a typical page? What is your file structure? What 3rd party libraries/components do you commonly use, and how do you keep your libraries, functions, classes organized?</strong></p> <p>Do you address/implement:</p> <ul> <li>DB abstraction</li> <li>REST</li> <li>OOP</li> <li>MVC</li> </ul> <p>and if so, how?</p> <p>At what point do you consider using a more popular, existing framework (eg. Codeigniter) instead?</p> <p>Things that got me thinking:<br /> <a href="http://toys.lerdorf.com/archives/38-The-no-framework-PHP-MVC-framework.html" rel="nofollow">The no-framework PHP MVC framework</a><br /> <a href="http://stackoverflow.com/questions/548399/what-php-application-design-design-patterns-do-you-use">What PHP application design/design patterns do you use?</a><br /> <a href="http://stackoverflow.com/questions/5214/whats-a-good-standard-code-layout-for-a-php-application">Whats A Good Standard Code Layour for a PHP Application?</a><br /> <a href="http://blog.fedecarg.com/2008/08/11/scalable-and-flexible-directory-structure-for-web-applications/" rel="nofollow">Scalable and Flexible Directory Structure for Web Applications</a></p> http://stackoverflow.com/questions/694929/whats-your-no-framework-php-framework/694958#694958 1 Answer by Abi Noda for What's your 'no framework' PHP framework? Abi Noda 2009-03-29T16:59:51Z 2009-04-11T06:17:42Z <p>I found a <a href="http://github.com/tylerhall/simple-php-framework/tree/master" rel="nofollow">Simple PHP Framework</a>...and it looks like a fantastic "no framework" framework ;)</p> http://stackoverflow.com/questions/694929/whats-your-no-framework-php-framework/694959#694959 0 Answer by jcinacio for What's your 'no framework' PHP framework? jcinacio 2009-03-29T17:00:10Z 2009-03-29T17:00:10Z <p>For any medium-size sites i tend to go with a good framework that fits the role - CI is usually a good choice.</p> <p>For small pages, i have my own implementation of an ultra-lightweight (and fast) MVC "framework". It's not really a framework, as all it does is request routing/dispatching but it allows me to have a site structure very similar to, for example, CodeIgniter:</p> <pre> app/ myMvcLib.php controllers/ models/ views/ public_html/ index.php </pre> <p>As for DB abstraction (again, on very small sites) i feel using PDO (using OOP) provides me with enough functionality to get things done, and quickly enough.</p> http://stackoverflow.com/questions/694929/whats-your-no-framework-php-framework/694993#694993 4 Answer by CMS for What's your 'no framework' PHP framework? CMS 2009-03-29T17:17:47Z 2009-03-29T17:17:47Z <p>You might want to check some minimalistic PHP Frameworks:</p> <ul> <li><a href="http://ookuwagata.net78.net/" rel="nofollow">Ookuwagata</a></li> <li><a href="http://code.google.com/p/simple-php-framework/" rel="nofollow">Simple-PHP-Framework</a></li> <li><a href="http://code.google.com/p/wephp/" rel="nofollow">wephp</a></li> <li><a href="http://www.lightvc.org/" rel="nofollow">LightVC</a></li> </ul> <p>I think they are simple, clean and fast enough.</p> <p>Any of them will allow to use any model or object relation mapping (ORM) tool (like <a href="http://propel.phpdb.org" rel="nofollow">Propel</a>, <a href="http://www.doctrine-project.org/" rel="nofollow">Doctrine</a>, <a href="http://coughphp.com/" rel="nofollow">CoughPHP</a>, etc...), althought Simple PHP Framework features a basic Active Record based model.</p> http://stackoverflow.com/questions/694929/whats-your-no-framework-php-framework/695001#695001 11 Answer by Click Upvote for What's your 'no framework' PHP framework? Click Upvote 2009-03-29T17:22:58Z 2009-03-29T17:22:58Z <p>Most of the time I use <a href="http://www.codeigniter.com" rel="nofollow">CodeIgniter</a>, but there are times when I just need to make a quick change/addition to something which is already up and running.</p> <p>In an ideal world, this is the no-framework framework I'd like to use one day:</p> <ul> <li>app <ul> <li>controllers</li> <li>models</li> <li>views</li> <li>config (db config, etc)</li> <li>emails (templates for emails sent out by the system)</li> <li>lib (common class files for pagination, db stuff, etc)</li> </ul></li> <li>index.php (Front controller)</li> <li>.htaccess</li> </ul> <p>In the real world, with deadline constraints, this is how i actually end up doing thngs (however someday I'm going to build the framework I mentioned above):</p> <ul> <li><strong>app</strong> <ul> <li>script.php</li> <li>another-script.php</li> <li>yet-another-script.php</li> <li><strong>admin</strong> <ul> <li>login.php</li> <li>users.php</li> <li>something-else.php</li> </ul></li> <li><strong>inc</strong> <ul> <li>db-config.php</li> <li>Db.php (Database class)</li> <li>Auth.php (user auth. class)</li> <li>functions.php (functions common throughout the system)</li> <li>........</li> </ul></li> </ul></li> </ul> http://stackoverflow.com/questions/694929/whats-your-no-framework-php-framework/695008#695008 0 Answer by Fire Crow for What's your 'no framework' PHP framework? Fire Crow 2009-03-29T17:30:12Z 2009-03-29T17:30:12Z <p>I'm making my own framework to use.</p> <p>I've set standards for the following,</p> <p>standard datatree multidemensional array</p> <p>standard way to process get/post data</p> <p>then I build modules that work with each other and can be combined to make larger programs</p> <p>e.g. a page program that handles the display of a page with several components.</p> <p>that uses a html-text component, and image component and even a video component, and can use any other type of content I would want in the future.</p> <p>the page system works in tandem with a navigation system, and they all work with a version control module.</p> <p>Each time I build a site I consider how to make it out of reusable modules.</p> <p>I do the same thing with my javascript functions so as I go I"m building my own framework over time.</p> <p>I think that I can make decisions about my framework that make them more effective for my use than any prebuilt framework would, because when I build it for myself I can take alot of options off the table, things needed for projects that are outside my core market, that's what makes a custom framework more effective over a generalized one, it can be more specific.</p> http://stackoverflow.com/questions/694929/whats-your-no-framework-php-framework/696184#696184 1 Answer by Zyx for What's your 'no framework' PHP framework? Zyx 2009-03-30T06:31:01Z 2009-03-30T06:31:01Z <p>Currently, I maintain two projects built without an external framework. One is my blog, written a long time ago in two days and improved from time to time since then. The code is short, simple, fast and works, but is a bit messy and more complex functionality is hard to add in an elegant way (in fact, it was written to be rewritten as soon as possible, but it works for 4 years now :)). The only external libraries are GeSHi for syntax highlighting and OPT template engine.</p> <p>Another project is a CMS with a small MVC core. It uses OPT, dedicated form processing tool and PDO extended with caching features and small improvements that speed up the programming. It also will be rewritten some day.</p> http://stackoverflow.com/questions/694929/whats-your-no-framework-php-framework/699272#699272 -1 Answer by TokenMacGuy for What's your 'no framework' PHP framework? TokenMacGuy 2009-03-30T22:21:54Z 2009-03-30T22:21:54Z <p>I just about never touch php without the use of smarty. This by itself enforces a bit of structure to the app (though not terribly much) and smarty can be put to a tremendous amount of work.</p> http://stackoverflow.com/questions/694929/whats-your-no-framework-php-framework/1418911#1418911 1 Answer by Sandeep Shetty for What's your 'no framework' PHP framework? Sandeep Shetty 2009-09-13T21:41:56Z 2009-09-13T21:41:56Z <p>My take on this has evolved over 9 years into a set of libraries (<strong>not</strong> a framework) that I am in the process of publishing: <a href="http://github.com/sandeepshetty/bombay/" rel="nofollow">http://github.com/sandeepshetty/bombay/</a></p> <p>I'm old school and <strong>know</strong> that good design is possible in any paradigm. I prefer using multiple paradigms and hate being locked into any one (I'm looking at all you OO-for-OO-sake frameworks).</p> <p>Not much of a MVC fan since it doesn't feel like the right approach to web programming. However, I do believe in separating code from presentation and my approach is heavily influenced by REST and what I like to call Resource Oriented Programming. For me, the web site <strong>IS</strong> the API.</p> <p>A note on file structure: I prefer modularity and try to keep my resource handlers self-contained so that they can easily be reused in other projects by coping them. This means that you won't find top level folders like <em>views</em>, <em>controllers</em> or <em>models</em>. Instead, I have top level folders like <em>libraries</em> and <em>handlers</em> (which further contain sub-folders per handler with all the code and templates that it needs).</p> http://stackoverflow.com/questions/694929/whats-your-no-framework-php-framework/1418920#1418920 1 Answer by George Jempty for What's your 'no framework' PHP framework? George Jempty 2009-09-13T21:44:15Z 2009-09-13T21:44:15Z <p>This is my own invention, please don't downmod me for that. I used it for the web UI on an embedded device for Cisco and it worked flawlessly. It's size at 60 lines was advantageous both from a disk and processor perspective on embedded Linux:</p> <p><a href="http://code.google.com/p/barebonesmvc-php/" rel="nofollow">http://code.google.com/p/barebonesmvc-php/</a></p> http://stackoverflow.com/questions/694929/whats-your-no-framework-php-framework/1422718#1422718 1 Answer by eyze for What's your 'no framework' PHP framework? eyze 2009-09-14T16:52:53Z 2009-09-14T17:04:56Z <p>I made <a href="http://gist.github.com/186761" rel="nofollow">this one</a> for my own personal use, it consists of only 4 functions:</p> <ul> <li>DB()</li> <li>Route()</li> <li>Singleton()</li> <li>View()</li> </ul> <p>It's inspired by <a href="http://github.com/bastos/nicedog" rel="nofollow">NiceDog</a> and <a href="http://dibiphp.com/" rel="nofollow">DiBi</a>. I use it primarily for simple websites and APIs, and I find the DB() function quite useful because it's quite easy to implement (zero configuration) and supports all the following features:</p> <ul> <li>SQLite 3</li> <li>Arrays for SELECTs</li> <li>Last Insert ID for INSERTs</li> <li># of Affected Rows for UPDATEs, DELETEs, ...</li> <li>Prepared Statements and Escaping similar to DiBi</li> </ul> <p>I haven't written any documentation for this but it should be pretty easy to understand if you study the code for a couple of minutes.</p> <p><strong>PS: I only use this "framework" for test cases and sometimes for low traffic stuff, a full featured framework should be used if you're doing something serious.</strong></p> http://stackoverflow.com/questions/694929/whats-your-no-framework-php-framework/1617479#1617479 0 Answer by knorthfield for What's your 'no framework' PHP framework? knorthfield 2009-10-24T09:25:48Z 2009-10-24T09:25:48Z <p>I like <a href="http://flourishlib.com/" rel="nofollow" title="Flourish">flourish</a></p>