<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Mon, 20 May 2013 21:38:05 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Lukas Smith: Good design is no excuse for wasting time]]></title>
      <guid>http://www.phpdeveloper.org/news/19377</guid>
      <link>http://www.phpdeveloper.org/news/19377</link>
      <description><![CDATA[<p>
In his most recent post <i>Lukas Smith</i> suggests that <a href="http://pooteeweet.org/blog/0/2205#m2205">good design isn't an excuse for wasting time</a>. He's basically saying that Symfony2, because of how it's designed and implemented, isn't a RAD (rapid application development) framework and that it's about time for some layers to be added to help get it there.
</p>
<blockquote>
Symfony 1.x I would put into a category of frameworks focused on RAD, aka rapid application development. [...] So for those people who were happy focusing on the 80% use case Symfony2 is a step back. Suddenly the same features take longer to implement, take longer to modify later on and on top of that the learning curve is steeper.
</blockquote>
<p>
He suggests that work be put into "RAD layers" that can sit on top of Symfony2 and provide some of the more familiar features people are used to from things like CakePHP, Yii and CodeIgniter. There's been <a href="https://github.com/FriendsOfSymfony/FOSRestBundle/blob/master/Resources/doc/5-automatic-route-generation_single-restful-controller.md">a few</a> <a href="http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/index.html">tries</a> to <a href="http://sonata-project.org/bundles/admin/master/doc/index.html">accomplish</a> this with only one getting the closest in his opinion - the <a href="http://rad.knplabs.com/">KnpBundle</a>.
</p>]]></description>
      <pubDate>Thu, 28 Mar 2013 11:51:51 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPMaster.com: Rapid Application Development with CakePHP]]></title>
      <guid>http://www.phpdeveloper.org/news/17430</guid>
      <link>http://www.phpdeveloper.org/news/17430</link>
      <description><![CDATA[<p>
On PHPMaster.com today there's a a new tutorial helping you take some <a href="http://phpmaster.com/rapid-application-development-with-cakephp/">first steps with CakePHP</a>, a popular full-stack PHP framework, by <i>Vito Tardia</i>.
</p>
<blockquote>
&#65279;CakePHP is a framework that provides a solid base for PHP development. It allows users at any skill level to rapidly develop robust web applications. [...] Personally, the reason why I prefer CakePHP over other PHP frameworks is its better support for console applications. CakePHP has a powerful console tool that can be customized to build applications for both the web and the console world. In this article I'll introduce you to two of CakePHP's most useful features:
automatic code generation using the console tool <a href="http://book.cakephp.org/2.0/en/console-and-shells/code-generation-with-bake.html">Bake</a> and dynamic <a href="http://book.cakephp.org/2.0/en/controllers/scaffolding.html">scaffolding</a>.
</blockquote>
<p>
He walks you through the full (user friendly) installation and configuration, a few changes to increase security and where to go to set up your database connection. From there he shows how to use the "Bake" command to generate a "subscribers" model and automatically create the user interfaces to work with it (CRUD operations)
</p>]]></description>
      <pubDate>Mon, 23 Jan 2012 08:37:14 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[NetTuts.com: Rapid Application Prototyping in PHP Using a Micro Framework]]></title>
      <guid>http://www.phpdeveloper.org/news/16818</guid>
      <link>http://www.phpdeveloper.org/news/16818</link>
      <description><![CDATA[<p>
On NetTuts.com today there's a new tutorial posted about <a href="http://net.tutsplus.com/tutorials/php/rapid-application-prototyping-in-php-using-a-micro-framework/">using a microframework for prototyping an application</a> you may not need a full stack framework to get running. Their examples are based on the <a href="http://www.slimframework.com/install">Slim</a> framework.
</p>
<blockquote>
Let's face it: we all have great ideas for a web application. Whether you write them down on paper or remember them using your eidetic memory, there comes a point when you want test whether or not your idea is really viable. In this tutorial, we'll use a micro framework, a templating language and an ORM to rapidly develop an application prototype.
</blockquote>
<p>
There's an introduction to help you get <a href="http://www.slimframework.com/install">Slim</a>, some <a href="https://github.com/codeguy/Slim-Extras">extras</a>, <a href="http://www.twig-project.org/installation">Twig</a> templating and <a href="https://github.com/j4mie/paris">Paris</a> and <a href="https://github.com/j4mie/idiorm">Idorm</a> set up and working happily together. There's code included for bootstrapping the application, creating a few routes, building models and using them to pull data from the database. They also create an "admin" area for their sample blog application, building an "add article" form and protecting it with a simple login system. You can <a href="http://nettuts.s3.amazonaws.com/1041_phprapidprototyping/code.zip">download the source</a> if you'd like to see it all working together.
</p>]]></description>
      <pubDate>Tue, 06 Sep 2011 09:56:57 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Bradley Holt's Blog: The Case For Rapid Release Cycles]]></title>
      <guid>http://www.phpdeveloper.org/news/16691</guid>
      <link>http://www.phpdeveloper.org/news/16691</link>
      <description><![CDATA[<p>
<i>Bradley Holt</i> has a new post to his blog today talking about something he's a fan of in his development processes - <a href="http://bradley-holt.com/2011/08/the-case-for-rapid-release-cycles/">rapid release cycles</a> - and how something like the Zend Framework could benefit from it.
</p>
<blockquote>
There has been some discussion recently on the Zend Framework mailing list around release cycles. I proposed a release cycle of six months for major versions (someone else suggested eighteen months, which may be more reasonable for a framework). Rapid releases allow one to accelerate the cycle of building, measuring, and learning. Gathering data from actual usage (measuring) provides an opportunity for learning that can be applied to the next release (building).
</blockquote>
<p>
He points out that the post isn't specifically targeted at the Zend Framework project, merely that it was the inspiration point for the idea. He talks about what rapid release cycles are and what it can give the team that implements it - less worries about backwards compatibility breaks, a potential encouragement for development pacing and the ease for the customers doing upgrades.
</p>
<blockquote>
A rapid release cycle allows you to apply new learning, knowledge, and perspective as often as possible. Do your best today, and give yourself opportunities to do your best in the future as well.
</blockquote>]]></description>
      <pubDate>Tue, 09 Aug 2011 08:44:33 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Invoke Media Blog: Zend Framework and Rapid Application Development with PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/10765</guid>
      <link>http://www.phpdeveloper.org/news/10765</link>
      <description><![CDATA[<p>
In <a href="http://www.invokemedia.com/zend-framework-and-rapid-application-development-with-php/">this recent post</a> on the Invoke Media blog <i>Andrew Liem</i> takes a look at the Zend Framework and shows how to create a simple site from install to execute.
</p>
<blockquote>
This article is aimed at php developers who are looking to learn more about how not to reinvent the wheel, in particular, with the new <a href="http://framework.zend.com/">Zend framework</a>. This is not a comparative list of all php frameworks, as there are many good ones out there, <a href="http://www.cakephp.org/">CakePHP</a> and <a href="http://www.symfony-project.org/">Symphony</a> to name two. I've evaluated other frameworks to some degree, not exhaustively by any means, and the Zend framework seems to fit nicely with my requirements. It may not for you, but I'll try to persuade you in this article
</blockquote>
<p>
He introduces the framework first including a brief touch on MVC, the DOJO integration and its power and flexibility. From there he lists the tools you'll need to follow along with him, setting up the framework and creating a very simple site in it based on a pre-generated database (with the typical create/read/update/delete functionality).
</p>]]></description>
      <pubDate>Tue, 05 Aug 2008 12:06:16 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Community News: Aurora PHP 5 Framework (MVC)]]></title>
      <guid>http://www.phpdeveloper.org/news/9125</guid>
      <link>http://www.phpdeveloper.org/news/9125</link>
      <description><![CDATA[<p>
The International PHP Magazine website has <a href="http://www.php-mag.net/magphpde/magphpde_news/psecom,id,27534,nodeid,5.html">pointed out</a> a new PHP 5.2+ framework that's in development - <a href="http://aurora.ryotic.de/docs/introduction">Aurora</a>.
</p>
<blockquote>
A slim modular model-view-controller (MVC) framework written in PHP5.2+ for rapid development of web- or console-applications featuring an integrated db-api, template-logic, pretty-urls, internationalization, caching, data-models and a multi-layered file-tree.
</blockquote>
<p>
They've just released <a href="http://sourceforge.net/project/platformdownload.php?group_id=203287">version 20071127</a> adding all sorts of new features and bugfixes. Right now, there's not a whole lot to go on - several bits of documentation are listed to the right of the site, but the only real page is <a href="http://aurora.ryotic.de/docs/introduction">the introduction</a>. If you'd like to be kept up to date on the project, though, you can always <a href="http://sourceforge.net/export/rss2_projnews.php?group_id=203287&amp;rss_fulltext=1">subscribe to their news feed</a>.
</p>]]></description>
      <pubDate>Tue, 27 Nov 2007 12:08:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Community News: Packt Publishing Releases "CodeIgniter for Rapid PHP Application Development"]]></title>
      <guid>http://www.phpdeveloper.org/news/8448</guid>
      <link>http://www.phpdeveloper.org/news/8448</link>
      <description><![CDATA[<p>
Packt Publishing has just released one of their latest PHP-related books just for the frameworkers out there looking to get introduced to one of the easiest to use PHP frameworks on the web - <a href="http://codeigniter.com/">CodeIgniter</a>. The book, "CodeIgniter for Rapid PHP Application Development", was written by <i>David Upton</i> director of a specialized management company. Here's Packt's official description from the press release:
</p>
<blockquote>
<p>
This book explains how to work with CodeIgniter in a clear and logical manner. It is not a detailed guide to the syntax of CodeIgniter, but makes an ideal complement to the existing online CodeIgniter user guide, helping you grasp the bigger picture and bringing together many ideas to get your application development started as smoothly as possible.
</p>
<p>
[...] CodeIgniter for Rapid PHP Application Development is out now and is written for developers who are new to CodeIgniter. Basic skills in PHP and MySQL are required, but only rudimentary object-oriented knowledge is required.
</p>
</blockquote>
<p>
You can purchase the book at your <a href="http://www.amazon.com/CodeIgniter-Rapid-PHP-Application-Development/dp/1847191746/qid=1187094166">retialer</a> of choice or you can get more information on the book itself from <a href="http://www.packtpub.com/codelgniter-php-application-development-mvc/book">this page</a> on the Packt Publishing website.
</p>]]></description>
      <pubDate>Tue, 14 Aug 2007 10:25:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Blogge: Things You Must Know About CakePHP]]></title>
      <guid>http://www.phpdeveloper.org/news/8308</guid>
      <link>http://www.phpdeveloper.org/news/8308</link>
      <description><![CDATA[<p>
On the Blogge site, there's a <a href="http://www.dassnagar.com/blogge/2007/07/15/you_must_know_about_cakephp/">listing of "must knows"</a> that developers should understand about the CakePHP framework when working with it.
</p>
<blockquote>
CakePHP is a rapid development framework for PHP which uses commonly known design patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. Our primary goal is to provide a structured framework that enables PHP users at all levels to rapidly develop robust web applications, without any loss to flexibility.
</blockquote>
<p>
Among those on <a href="http://www.dassnagar.com/blogge/2007/07/15/you_must_know_about_cakephp/">the list of handy tips</a> for using the framework are things like:
</p>
<ul>
<li>Static pages - Adjusting other data sent to the layout
<li>Viewing the SQL queries that are running behind the scenes
<li>Using bake.php
<li>Complex model validation
<li>Creating a model for a table that doesn't actually exist in the database
<li>Inserting multiple rows in succession
</ul>]]></description>
      <pubDate>Mon, 23 Jul 2007 12:52:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Community News: Delphi for PHP Released]]></title>
      <guid>http://www.phpdeveloper.org/news/7525</guid>
      <link>http://www.phpdeveloper.org/news/7525</link>
      <description><![CDATA[<p>
As <i>Justin Silverton</i> points out in <a href="http://www.whenpenguinsattack.com/2007/03/28/delphi-for-php-released/">his latest post</a> to the JSLabs blog, CodeGear has <a href="http://www.codegear.com/AboutUs/News/DelphiForPHPNowAvailable/tabid/251/Default.aspx">officially released</a> their version of Delphi for PHP.
</p>
<p>
From the <a href="http://www.codegear.com/AboutUs/News/DelphiForPHPNowAvailable/tabid/251/Default.aspx">official announcement</a>:
</p>
<blockquote>
<p>
CodeGear, a leader in developer tools, today announced that Delphi® for PHP '" an integrated visual Rapid Application Development (RAD) environment for the popular PHP Web development language '" is now shipping worldwide.
</p>
<p>
Delphi for PHP brings the RAD productivity benefits that Delphi users have enjoyed for years to PHP Web developers. PHP, designed to allow Web developers to write dynamically generated pages quickly, is the most prominent dynamic Web language today and has become one of the top 10 programming languages overall.
</p>
</blockquote>
<p>
Features of this <a href="http://www.codegear.com/LinkClick.aspx?link=237&tabid=251">new tool</a> include  VCL for PHP, an open-source PHP 5 visual component library with more than 50 reusable components and seamless AJAX integration, an integrated PHP debugger, and a code editor with Code Insight, Code Explorer, and Code Templates.
</p>
<p>
Check out <a href="http://www.codegear.com/LinkClick.aspx?link=237&tabid=251">the main site</a> for the software or one of the videos showing it in action:
<ul>
<li><a href="http://dn.codegear.com/article/34091">Using VCL for PHP to build database application and data dictionary in Delphi for PHP</a>
<li><a href="http://dn.codegear.com/article/34119">Delphi for PHP Simple Application</a>
</ul>
</p>]]></description>
      <pubDate>Thu, 29 Mar 2007 08:45:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[CodeGear.com: Borland Announced Delphi for PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/7337</guid>
      <link>http://www.phpdeveloper.org/news/7337</link>
      <description><![CDATA[<p>
CodeGear (from Borland) has <a href="http://www.codegear.com/Products/Delphi/DelphiforPHP/tabid/237/Default.aspx">officially announced</a> the release of Delphi for PHP, a new rapid application development environment for a more visual approach to PHP development.
</p>
<blockquote>
Many web developers today use PHP to develop portal frameworks, forums, and web applications because PHP allows them to create dynamic web applications with solid database connectivity. However, PHP web development has been stymied by the lack of a powerful RAD visual development environment. The existence of an active and vital open source PHP ecosystem with myriad of open source components and options makes the need for an integrated RAD development environment even more critical.
</blockquote>
<p>
You can check out this new software and all of its features on <a href="http://www.codegear.com/Products/Delphi/DelphiforPHP/tabid/237/Default.aspx">the CodeGear website</a>.
</p>]]></description>
      <pubDate>Fri, 23 Feb 2007 10:57:00 -0600</pubDate>
    </item>
  </channel>
</rss>
