<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Professional PHP &#187; dependency-management</title>
	<atom:link href="http://www.procata.com/blog/archives/tag/dependency-management/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.procata.com/blog</link>
	<description>PHP Programming, Web Development, PHP Advocacy and PHP Best Practices.</description>
	<lastBuildDate>Fri, 10 Dec 2010 17:23:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Zend Framework Webcast</title>
		<link>http://www.procata.com/blog/archives/2005/12/05/zend-framework-webcast/</link>
		<comments>http://www.procata.com/blog/archives/2005/12/05/zend-framework-webcast/#comments</comments>
		<pubDate>Mon, 05 Dec 2005 20:42:46 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[active-record]]></category>
		<category><![CDATA[dependency-management]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[pear-installer]]></category>
		<category><![CDATA[zend-framework]]></category>

		<guid isPermaLink="false">http://www.procata.com/blog/?p=164</guid>
		<description><![CDATA[I guess I missed the Zend PHP Framework webcast on Friday.  I was looking forward to it, but I signed up a while ago and forgot about it.  By the time I got the reminder email, it was too late.  Fortunately, the recording is now available.  If you have an interest [...]]]></description>
			<content:encoded><![CDATA[<p>I guess I missed the Zend PHP Framework webcast on Friday.  I was looking forward to it, but I signed up a while ago and forgot about it.  By the time I got the reminder email, it was too late.  Fortunately, the recording is <a href="http://www.phparch.com/webcasts/recordings/dec0205_zend.php">now available</a>.  If you have an interest in ZPF or frameworks in general, you should watch this.</p>
<p><a href="http://shiflett.org/archive/171">Chris Shiflet</a> and <a href="http://blog.phpdeveloper.org/?p=23">PHP Developer</a> both have coverage of the webcast.  The webcast even <a href="http://www.loudthinking.com/arc/000544.html">caught some attention</a> from the Rails camp.</p>
<p>I won&#8217;t try to summarize the webcast here, but instead offer a few impressions.</p>
<p>I found the webcast to be interesting, although it didn&#8217;t really answer the primary questions I have about the structure of the front controller and form processing.  ZActiveRecord, ZMail, and ZSearch are fine components, but my interest lies in the controllers because that is the area where there is the least consensus about the state of the art.  One red flag for me was the suggestion of putting business logic in actions.  Nothing but a high level overview was given of the controllers, but this perks my ears as an issue in <a href="http://www.phpwact.org/pattern/model_view_controller">MVC separation</a>.</p>
<p>The coding standards emphasize not reserving global resources.  The framework will not define functions or global constants, it uses <a href="http://www.procata.com/blog/archives/2004/05/24/exceptional-php/">exceptions</a> and doesn&#8217;t reserve __autoload for its own use.  This is very good.  On the other hand, it seems to rely on static methods quite a bit, which I think can burn you over the long run if you are trying to offer a componentized architecture and can make code more difficult to test.  I&#8217;ve been moving away from static methods as much as I can in my own code.  Eventually, I always seem to regret using them.  They lure you in at the beginning with the promise of simplicity and then they punish you later with their inflexibility.</p>
<p>I wonder how many of the components do their own &#8220;connection management&#8221; such as with the ZSearch::open (static methods again)?  This strikes me as an opportunity for a general dependency injection mechanism.  A technique that we are emphasizing more and more in WACT, but which I don&#8217;t think has reached widespread use in the PHP framework world.</p>
<p>One of the stated goals of the Zend Framework is to improve the PHP ecosystem.  The webcast suggests that Zend PHP Framework will play well with others, allowing you to use the components independently, or for example use a different templating system with the framework.  On the other hand, Andi suggested that all components will be distributed in their entirety.  When asked if a stripped down version could be distributed, the answer was &#8220;Why would you want to?&#8221;</p>
<p>I don&#8217;t think a monolithic distribution mechanism will play well with the new ecosystem of components that is rising up based on the PEAR installer&#8217;s new channel capability.  Eventually, the PEAR installer will move into the <a href="http://www.schlitt.info/applications/blog/index.php?/archives/388-Distributing-your-PHP-applications-with-PEAR.html">end user application installation</a> space.  To participate in this, ZPF should be available over a channel.  I think a key success factor for the Zend framework will be the release of individual components via a PEAR channel.</p>
<p>It is much better to be able to declare dependencies on individual packages, rather than on one huge bundle of components.  Monolithic distribution unnecessarily ties together the release schedules of packages that might otherwise have no common dependencies.  Micro-packages on a PEAR channel are the future of <a href="http://www.procata.com/blog/archives/2004/11/24/installing-web-applications/">PHP web application installation</a>.</p>
<p>Overall, I think Zend is taking a good approach to the development of ZPF.  I look forward to learning more.  </p>
<p><strong>Update</strong>: Just as writing tests is an important process element, because testable code is better code, I think that micro package releases are better than monolithic package releases from a process standpoint.  The mere act of writing the components so that they can be independently released highlights unhealthy dependencies.  This, of course, has to be tempered by an <a href="http://www.procata.com/blog/archives/2005/11/06/communicating-a-vision-with-open-source/">overall vision</a> and cross-package duplicate code elimination.  Two areas that have been challenges for PEAR with its political fiefdoms surrounding each package and one reason why <a href="http://www.procata.com/blog/archives/2005/12/01/the-rumors-of-pears-demise-are-greatly-exaggerated/">PEAR is not a framework</a>.</p>
<p>(P.S.  Hurry up and release ZSearch.  I want to use it.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.procata.com/blog/archives/2005/12/05/zend-framework-webcast/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

