I've just released a PHP framework called EuropaPHP (http://europaphp.org/). I was wondering if I could get some feedback from of you guys whatever it may be. Let me know what you like about it, what you don't like about it; whatever.

It's based on similar coding conventions to that of the Zend Framework and as a result, the Zend Framework can be dropped into Europa.

The aim was to create an extremely lightweight and fast MVC framework with a simple and intuitive API. You can customize it in nearly any way possible, but good defaults were chosen so you can just unzip it and start coding.

TIA.

link|improve this question

40% accept rate
Haven't checked out the framework yet, but great website design (don't take that lightly, either -- this is coming from a web designer). :) – Sasha Chedygov Jul 2 '09 at 7:12
1  
@Vinko: I'm fairly sure I would. Definitely. It's the ease of use that's important, not how the design looks like. Design only helps "selling" the product in this case. – Michal M Jul 2 '09 at 8:00
6  
Hey guys, I noticed someone voted me down, and it doesn't look like I have any negative comments. If you do vote me down, could you at least explain why? Thanks ;) – Tres Jul 2 '09 at 9:05
1  
I think they vote u down cause you're kinda asking for a "favor".. Just a theory! Very nice site though! I'm missing two things: 1) hands-on example code that shows what the framework is "all about" up front, preferably on the front page, but within one click would be "ok" 2) browse the source code online. Again, very nice site! Keep it up! And be sure to come back here to SO whenever you run into a tricky and stimulating problem with the code! :) – 0scar Jul 2 '09 at 11:20
2  
Could you bring an example for the Events in the quick start? Everything else looks pretty promising. – Daff Jul 11 '09 at 12:18
show 10 more comments
feedback

3 Answers

Consider the spl registry for establishing an autoload function instead of using __autoload. This would make your framework play nice with other framework's autoload mechanism. (Take a look at SwiftMailer's autoload function for ideas)

link|improve this answer
Thanks for that. spl_autoload is actually in the works, and I will be allowing it to fall back to __autoload if spl isn't in the PHP build. – Tres Jul 2 '09 at 13:57
feedback

On this page:

Create an .htaccess file in the same directory as your lib directory and put the following in it:

RewriteEngine On
RewriteRule ^.*$ index.php

How do you approach serving static files (e.g. images, css, js) if everything is routed through index.php?

link|improve this answer
The .htaccess file is a sample one, as with the index.php file. If you wanted to allow directory/file access you could use: RewriteCond %{REQUEST_FILENAME} !-f and RewriteCond %{REQUEST_FILENAME} !-d. However, this allows you the flexibility of routes so you could use a controller to set cache headers, compile javascript etc. before setting a content type header and serving the file. – Tres Jul 9 '09 at 23:05
feedback

Website feedback: Very pretty website, perhaps a little too informal (though that is just an opinion).

Documentation > Api

Click on a compoenent below to view it's documentation.

Should be

Documentation > A**PI**

Click on a comp**on**ent below to view its documentation.

link|improve this answer
Thanks jezmck. Two pairs of eyes are always better than one. using "Api" instead of "API" is a stylistic choice since the breadcrumbs are being automatically generated through a helper. As for the design, I am trying to be informal. – Tres Jul 9 '09 at 23:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.