Darren O'Neill

Integrate Bugsnag into ZF2

In Zend Framework 2 you approach exception handling quite differently from how you currently do in version 1 of the framework. Gone are error controllers and in are event listeners.

If you like to use an an external service to notify you of raised exceptions you will need to rework ...

Timestamps and databases

I have found the most reliable way to store times with different time zones is to not actually use a time zone aware type your database may provide. For example PostgreSQL provides timestamp with time zone. The best way is to store everything in UTC time in a naive timestamp ...