It seems like the topic of Aspect-Oriented Programming (AOP) in PHP started sometime in 2005 and died sometime around 2007.
Some (now apparently dead) projects include:
So is there anyone out there still working on this?
|
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
A new PECL extension now exists (still in beta but working really fine) https://github.com/AOP-PHP/AOP First beta released in PECL : http://pecl.php.net/AOP |
|||||
|
|
The Flow3 framework has an AOP component as well.
According to this blog post by ZF's Matthew Weier O'Phinney Lithium's Filters are more like Signal Slots. So you might find Flow's AOP with it's Pointcuts and Join Points more true to an AOP implementation. |
|||||||||
|
|
Yes there is. Check out Lithium. It's basically Cake3, that takes advantage of a lot of the nice PHP 5.3+ features... While it is an OO framework, it does make pretty heavy use of A-O-P concepts... Some documentation to that effect:
|
|||||
|
|
There is one more pure PHP library for AOP integration into any existing PHP application: Go! AOP Go! doesn't require any PECL-extentions, it neither uses any dark magic of Runkit nor evals, the library doesn't use DI-containers. The code with weaved aspects is fully readable and native, it can be easily debugged with XDebug. You can debug either classes or aspects. |
|||
|
|
|
ProdigyView has 100% aspect oriented design. http://www.prodigyview.com Docs for using the design patterns here: http://www.prodigyview.com/tutorials#MongoDB+GridFS+%3A+Database+File+Storage |
|||
|
|