Earlier quoted context omitted.
This has been a core idea in both Midgard MVC and MidCOM PHP frameworks, though we called them components. http://wiki.openpsa2.org/index.php/MidCOM_Components https://github.com/midgardproject/midgardmvc_core/blob/maste...
I really hate why Django calls them 'apps'. Kinda difficult to distinguish between a working application or a Django 'app'.
Symfony 2.0 is now available
41–50 of 75 posts
Re: Symfony 2.0 is now available
#42Beyond methodology and community, one of the major decisions involved when selecting a framework is being confident that your codebase will be supported in the near future. The Symfony developers and community seem very committed to their framework. Great Job!
Re: Symfony 2.0 is now available
#43I'd never heard of Symfony before. Can someone point to some tech details about the framework? The site does a lot of explaining what a framework is, and some general philosophies - but not what this particular framework is.
Same here. No Idea where this came from. To be honest the effort put into this could've just contributed to an existing open source framework for improvement.
Re: Symfony 2.0 is now available
#44Earlier quoted context omitted.
Just curious about that first sentence there... are you saying that Symfony and Yii are both in the same league, different from everything else, or that Symfony is in a league different from the one that Yii is in? I haven't looked at Symfony, but I was really impressed by the event driven nature of Yii, and I couldn't wipe the smile off my face when I started looking into the active page elements. I think 2.0 is as…
I was meaning "Symfony is in a league different from the one that Yii is in" I value Symfony so much because you can create all model classes, crud forms etc from command line (as much as you want as you update your schema) just based on specifications from a easy to manage yml file. Also with ORM behaviors, you are in control of everything about your model.
Re: Symfony 2.0 is now available
#45Congrats to Symfony2 Team! FYI, Symfony2 requires minimum PHP version 5.3.2 PHP 5.3 which is not something every shared hosting provider will support, most are still on 5.2.series. so everyone should keep that in mind while writing PHP app with Symfony2
Re: Symfony 2.0 is now available
#46I've looked through some source code in the Symfony 2 components. The code is well organized, commented, and most of all it is of high quality. As far as I am concerned, Symfony 2 is the gold standard example for developing a PHP project of any kind.
Re: Symfony 2.0 is now available
#47I'd never heard of Symfony before. Can someone point to some tech details about the framework? The site does a lot of explaining what a framework is, and some general philosophies - but not what this particular framework is.
Same here. No Idea where this came from. To be honest the effort put into this could've just contributed to an existing open source framework for improvement.
Re: Symfony 2.0 is now available
#48I'd never heard of Symfony before. Can someone point to some tech details about the framework? The site does a lot of explaining what a framework is, and some general philosophies - but not what this particular framework is.
Symfony is a rather popular PHP framework; it is commonly regarded in the PHP community as one of the higher-quality frameworks (amidst many half-baked frameworks that cause serious problems once your use case moves past the blog tutorial). In terms of functionality, it's basically for PHP what Rails is for Ruby, but unlike many other PHP frameworks, it's been designed with the platform in mind rather than trying to…
isnt it so that its much easier to find a Zend plugins/libraries or Cakephp ready-made plugin/library than to find Symphony code snippets
Re: Symfony 2.0 is now available
#49Can someone comment on Symfony vs. CodeIgniter? I've done a few projects in CI - any big compelling reason to switch to Symfony for the next one?
Symfony2, on the other hand, can be pretty safely termed a modern system: it's almost completely modular (and not in the "override some files, it's like magic!" method of Kohana or CI), expects modern programming practices (it doesn't treat you like an idiot; you can use PHP 5.3 stuff like anonymous functions and it's cool with it), and is blazingly, blazingly fast when configured properly.
Re: Symfony 2.0 is now available
#50I highly recommend Yii ( http://www.yiiframework.com/ ) for people looking for a PHP framework. I've never used Symfony so can't compare the two, but Yii has done everything I've asked of it.