Categories
Archives
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- July 2007
- June 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
Category Archives: Aura
Symfony Components: Sometimes Decoupled, Sometimes Not
Previously, on decoupling and dependencies, I said: “Some [Symfony] commenters were dissatsifed with my use of unit testing requirements to discover what a package really depends on, as opposed to what its composer.json file states.” I’m willing to allow that … Continue reading
Posted in Aura, PHP, Programming
27 Comments
On Decoupling and Dependencies: Answering The Critics of Aura’s Approach
“There are no solutions … only trade-offs.” — Thomas Sowell tl;dr: “As a library author it’s tempting to bring in dependencies for various reasons, but as a library user it’s frequently convenient to not have cascading dependency sets. … If … Continue reading
Posted in Aura, PHP, Programming
20 Comments
New Aura System Release, Including Aura.Framework and Aura.Demo
Late last night we released version 1.0.0-beta4 of the full-stack system, which composes all the independent Aura packages into a coherent framework using the Aura.Framework package in a project skeleton. We have extracted the “hello world” portions into their own … Continue reading
Posted in Aura, PHP, Programming
8 Comments
Aura.Micro: Experimental Replacement for Silex
Stan Lemon writes on the Aura Project for PHP 5.4+ blog about an experiment he’s trying: I was recently working on a small project that used Silex. As I browsed my vendor folder, I realized how much extra “stuff” I … Continue reading
Posted in Aura, PHP, Programming
11 Comments
Aura: More Decoupled Than Symfony 2 and Zend Framework 2
The guys at PHPMagazin have posted a followup question about the Aura Project for PHP. Here is our original English conversation. I’d like to follow up on the last point where we talked about other frameworks. I think that the … Continue reading
Posted in Aura, General, PHP, Programming
43 Comments
How Is Aura Better Than (er, Different From ;-) Than Symfony and Zend?
I did an email interview with the folks at PHP Magazin; their German version is here. What follows is our original email exchange in English. First of all, congratulations for releasing Aura 1.0! Thanks! Most of the packages are at … Continue reading
Posted in Aura, PHP, Programming
11 Comments
Aura: First 1.0.0 Stable Library Releases!
The Aura Project for PHP 5.4 is happy to announce its first release of 1.0.0 stable library packages. The packages include: Aura.Autoload Aura.Cli Aura.Di Aura.Http Aura.Marshal Aura.Router Aura.Signal Aura.Sql Aura.Uri Aura.View Aura.Web In addition, we have initial beta releases of … Continue reading
Posted in Aura, PHP, Programming
2 Comments
When Possible, Use File *Resources* Instead Of File *Names*
In testing the Aura.Http package, I have realized that it’s much more flexible, testing wise, to pass around file resources (a.k.a. handles, pointers, or streams) than it is to pass around file names. When you do that, you can use … Continue reading
Posted in Aura, PHP, Programming
9 Comments
Aura.Router can also be used as a micro-framework dispatcher!
Sometimes you may wish to use Aura as a micro-framework. It’s also possible to assigning anonymous function to controller: <?php $map->add("read", "/blog/read/{:id}{:format}", [ "params" => [ "id" => "(\d+)", "format" => "(\..+)?", ], "values" => [ "controller" => function ($args) … Continue reading
Posted in Aura, PHP, Programming
1 Comment
Differences in Packaging Approaches: Aura, Symfony2, and ZF2
Looking from outside both Symfony2 and ZF2 is full of standalone components. But the reality is not the same. Though Symfony2 components are split into each components in github, you cannot give a pull request to that component. The tests … Continue reading
Posted in Aura, PHP, Programming
2 Comments