Alana Storm
Alana Storm

Reputation: 166066

PHP 5.3 only Systems/Frameworks

What PHP systems or frameworks have gone 5.3 only, or contain a significant number of features that require/take-advantage of PHP 5.3?

Upvotes: 1

Views: 1388

Answers (4)

BeesonBison
BeesonBison

Reputation: 1078

There's also the Lithium framework, which is quite similar in design to CakePHP

http://li3.me/

Update: I would also highly recommend that you check out Phalcon

Upvotes: 2

Vance Lucas
Vance Lucas

Reputation: 2838

Check out Alloy Framework - It's a new PHP 5.3+ Hierarchal MVC Framework that works a little differently than most other MVC frameworks.

The main differences to other framework projects are primarily:

  1. Modular Organization - single folder for a group of controllers/views/entities that are created for the same structure - "blog" or "events", etc.
  2. HMVC (Hierarchal MVC) - Allows module sub-dispatches anywhere within views or controllers - extremely useful for "wiget" type structures within layouts or nested views. Helps promote code re-use for common structures like "comments", "tags", "ratings", etc.
  3. More explicitness - view objects are explicitly retuned by the controller method for display instead of implicitly loaded, etc.

Read more on the Architecture page of the manual.

The URL Router is also very nice and borrows a lot of concepts from Merb and Rails.

Upvotes: 3

Crozin
Crozin

Reputation: 44376

Frameworks:

ORMs:

Upvotes: 4

Peter Bailey
Peter Bailey

Reputation: 105878

Symfony 2.0

Upvotes: 3

Related Questions